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