xref: /freebsd/share/man/man4/man4.aarch64/Makefile (revision 0832a409c21b45b2a31b90c50a005d9a4b1a5efd)
1.PATH: ${.CURDIR}/../man4.arm # Some manpages are common to arm and aarch64
2
3MAN=	\
4	armv8crypto.4 \
5	enetc.4 \
6	felix.4 \
7	rk_gpio.4 \
8	rk_grf.4 \
9	rk_grf_gpio.4 \
10	rk_i2c.4 \
11	rk_pinctrl.4 \
12
13# Install manpages shared with arm only if not installing manpages
14# for all architectures, otherwise arm takes care of installing them.
15.if !empty(MAN_ARCH) && ${MAN_ARCH} != "all"
16MAN+=	\
17	aw_gpio.4 \
18	aw_mmc.4 \
19	aw_rtc.4 \
20	aw_sid.4 \
21	aw_spi.4 \
22	aw_syscon.4 \
23	bcm283x_pwm.4 \
24
25.endif
26
27# Link files to the architecture directory.
28_ARCH_SUBDIR=aarch64
29.for _manpage in ${MAN}
30MLINKS+=${_manpage} ${_ARCH_SUBDIR}/${_manpage}
31.endfor
32
33.include <bsd.prog.mk>
34