1b3cd5ec63
The information here is somewhere between ancient to obsolete. It refers to a time in the internet's history when manual routing was still useful, talks about UUCP as if its modern, and refers to documents which I had trouble tracking down. It seems unlikely that a manual page in this form would be useful, so just remove it. Reviewed By: imp, tsoome, bdrewery(?) Differential Revision: https://reviews.freebsd.org/D12924
55 lines
831 B
Makefile
55 lines
831 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/5/93
|
|
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime-manuals
|
|
|
|
#MISSING: eqnchar.7 ms.7 term.7
|
|
MAN= arch.7 \
|
|
ascii.7 \
|
|
bsd.snmpmod.mk.7 \
|
|
build.7 \
|
|
clocks.7 \
|
|
crypto.7 \
|
|
c99.7 \
|
|
development.7 \
|
|
environ.7 \
|
|
ffs.7 \
|
|
firewall.7 \
|
|
growfs.7 \
|
|
hier.7 \
|
|
hostname.7 \
|
|
intro.7 \
|
|
maclabel.7 \
|
|
operator.7 \
|
|
ports.7 \
|
|
release.7 \
|
|
sdoc.7 \
|
|
security.7 \
|
|
sprog.7 \
|
|
stdint.7 \
|
|
sticky.7 \
|
|
tests.7 \
|
|
tuning.7
|
|
|
|
MLINKS= intro.7 miscellaneous.7
|
|
MLINKS+= security.7 securelevel.7
|
|
MLINKS+= c99.7 c.7
|
|
MLINKS+= c99.7 c78.7
|
|
MLINKS+= c99.7 c89.7
|
|
MLINKS+= c99.7 c90.7
|
|
|
|
.if ${MK_TESTS} != "no"
|
|
ATF= ${SRCTOP}/contrib/atf
|
|
.PATH: ${ATF}/doc
|
|
MAN+= atf.7
|
|
|
|
CLEANFILES+= atf.7
|
|
atf.7: atf.7.in
|
|
sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
|
|
<"${ATF}/doc/atf.7.in" >atf.7
|
|
.endif
|
|
|
|
.include <bsd.prog.mk>
|