xref: /freebsd/share/man/man4/man4.aarch64/Makefile (revision 06c3fb27)
1
2.PATH: ${.CURDIR}/../man4.arm # Some manpages are common to arm and aarch64
3
4MAN=	\
5	armv8crypto.4 \
6	enetc.4 \
7	felix.4 \
8	rk_gpio.4 \
9	rk_grf.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