xref: /freebsd/share/man/man7/Makefile (revision 8a0a413e)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2# $FreeBSD$
3
4.include <src.opts.mk>
5
6PACKAGE=runtime-manuals
7
8#MISSING: eqnchar.7 ms.7 term.7
9MAN=	arch.7 \
10	ascii.7 \
11	bsd.snmpmod.mk.7 \
12	build.7 \
13	clocks.7 \
14	crypto.7 \
15	c99.7 \
16	development.7 \
17	environ.7 \
18	ffs.7 \
19	firewall.7 \
20	growfs.7 \
21	hier.7 \
22	hostname.7 \
23	intro.7 \
24	maclabel.7 \
25	operator.7 \
26	ports.7 \
27	release.7 \
28	sdoc.7 \
29	security.7 \
30	sprog.7 \
31	stdint.7 \
32	sticky.7 \
33	tests.7 \
34	tuning.7
35
36MLINKS=	intro.7 miscellaneous.7
37MLINKS+= security.7 securelevel.7
38MLINKS+= c99.7 c.7
39MLINKS+= c99.7 c78.7
40MLINKS+= c99.7 c89.7
41MLINKS+= c99.7 c90.7
42
43.if ${MK_TESTS} != "no"
44ATF=	${SRCTOP}/contrib/atf
45.PATH:	${ATF}/doc
46MAN+=	atf.7
47
48CLEANFILES+= atf.7
49atf.7: atf.7.in
50	sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
51	    <"${ATF}/doc/atf.7.in" >atf.7
52.endif
53
54.include <bsd.prog.mk>
55