xref: /freebsd-13-stable/share/man/man8/Makefile (revision 023fc80ee38a117fa65b2ccb2abf8bdc7dbd6fd9)
1#	@(#)Makefile	8.1 (Berkeley) 6/5/93
2
3.include <src.opts.mk>
4
5MAN=	\
6	beinstall.8 \
7	crash.8 \
8	diskless.8 \
9	intro.8 \
10	nanobsd.8 \
11	rc.8 \
12	rc.sendmail.8 \
13	rc.subr.8 \
14	rescue.8 \
15	${_uefi.8} \
16
17MLINKS= \
18	beinstall.8 beinstall.sh.8 \
19	nanobsd.8 nanobsd.sh.8 \
20	rc.8 rc.d.8 \
21	rc.8 rc.firewall.8 \
22	rc.8 rc.local.8 \
23	rc.8 rc.network.8 \
24	rc.8 rc.pccard.8 \
25	rc.8 rc.resume.8 \
26	rc.8 rc.serial.8 \
27	rc.8 rc.shutdown.8
28
29.if ${MK_NIS} != "no"
30MAN+=	yp.8
31
32MLINKS+=yp.8 NIS.8 \
33	yp.8 nis.8 \
34	yp.8 YP.8
35.endif
36
37.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64"
38_uefi.8= uefi.8
39
40MLINKS+=uefi.8 efi.8
41.endif
42
43.include <bsd.prog.mk>
44