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