xref: /freebsd/share/man/man7/Makefile (revision e09104dfb76a36b65a64bd315bd1520941c4beed)
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	groups.7 \
18	growfs.7 \
19	hier.7 \
20	hostname.7 \
21	intro.7 \
22	maclabel.7 \
23	mitigations.7 \
24	named_attribute.7 \
25	operator.7 \
26	orders.7 \
27	freebsd-base.7 \
28	ports.7 \
29	release.7 \
30	sdoc.7 \
31	security.7 \
32	simd.7 \
33	sizeof.7 \
34	sprog.7 \
35	stats.7 \
36	stdint.7 \
37	sticky.7 \
38	tracing.7 \
39	tuning.7
40
41MLINKS=	intro.7 miscellaneous.7
42MLINKS+= growfs.7 growfs_fstab.7
43MLINKS+= freebsd-base.7 pkgbase.7
44MLINKS+= security.7 securelevel.7
45MLINKS+= c.7 c78.7
46MLINKS+= c.7 c89.7
47MLINKS+= c.7 c90.7
48MLINKS+= c.7 c95.7
49MLINKS+= c.7 c99.7
50MLINKS+= c.7 c11.7
51MLINKS+= c.7 c17.7
52MLINKS+= c.7 c23.7
53MLINKS+= c.7 c2y.7
54MLINKS+= groups.7 wheel.7
55
56.if ${MK_INET} != "no"
57MAN+=	networking.7
58MLINKS+= networking.7 wifi.7
59.endif
60
61.if ${MK_TESTS} != "no"
62MANGROUPS+=	ATF TESTS
63
64TESTS=		tests.7
65TESTSPACKAGE=	tests
66
67ATF=		atf.7
68ATFPACKAGE=	atf
69
70ATFPATH=	${SRCTOP}/contrib/atf
71.PATH:	${ATFPATH}/doc
72
73CLEANFILES+= atf.7
74atf.7: atf.7.in
75	sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
76	    <"${ATFPATH}/doc/atf.7.in" >atf.7
77.endif
78
79.include <bsd.prog.mk>
80