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