freebsd-src/share/man/man7/Makefile
Alexander Ziaee 1687d77197 man filesystems: move driver pages to section four
Filesystem manual pages describe drivers, not formats;
except for fs, which describes the structures of ffs/ufs,
not how to use it in the system.

Reported by: emaste
Reviewed by: des, imp, meena (previous version)
Pull Request: https://github.com/freebsd/freebsd-src/pull/1077
2024-05-16 10:24:40 -06:00

65 lines
990 B
Makefile

.include <src.opts.mk>
#MISSING: eqnchar.7 ms.7 term.7
MAN= arch.7 \
ascii.7 \
bsd.snmpmod.mk.7 \
build.7 \
c.7 \
clocks.7 \
crypto.7 \
development.7 \
environ.7 \
firewall.7 \
growfs.7 \
hier.7 \
hostname.7 \
intro.7 \
maclabel.7 \
mitigations.7 \
operator.7 \
orders.7 \
ports.7 \
release.7 \
sdoc.7 \
security.7 \
simd.7 \
sizeof.7 \
sprog.7 \
stats.7 \
stdint.7 \
sticky.7 \
tests.7 \
tuning.7
MLINKS= intro.7 miscellaneous.7
MLINKS+= growfs.7 growfs_fstab.7
MLINKS+= security.7 securelevel.7
MLINKS+= c.7 c78.7
MLINKS+= c.7 c89.7
MLINKS+= c.7 c90.7
MLINKS+= c.7 c95.7
MLINKS+= c.7 c99.7
MLINKS+= c.7 c11.7
MLINKS+= c.7 c17.7
MLINKS+= c.7 c2x.7
.if ${MK_INET} != "no"
MAN+= networking.7
MLINKS+= networking.7 wifi.7
.endif
.if ${MK_TESTS} != "no"
ATF= ${SRCTOP}/contrib/atf
.PATH: ${ATF}/doc
MAN+= atf.7
CLEANFILES+= atf.7
atf.7: atf.7.in
sed -e 's,__DOCDIR__,/usr/share/doc/atf,g' \
<"${ATF}/doc/atf.7.in" >atf.7
.endif
.include <bsd.prog.mk>