xref: /freebsd/share/man/man4/man4.aarch64/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
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_i2c.4 \
10	rk_pinctrl.4 \
11
12# Install manpages shared with arm only if not installing manpages
13# for all architectures, otherwise arm takes care of installing them.
14.if !empty(MAN_ARCH) && ${MAN_ARCH} != "all"
15MAN+=	\
16	aw_gpio.4 \
17	aw_mmc.4 \
18	aw_rtc.4 \
19	aw_sid.4 \
20	aw_spi.4 \
21	aw_syscon.4 \
22	bcm283x_pwm.4 \
23
24.endif
25
26# Link files to the architecture directory.
27_ARCH_SUBDIR=aarch64
28.for _manpage in ${MAN}
29MLINKS+=${_manpage} ${_ARCH_SUBDIR}/${_manpage}
30.endfor
31
32.include <bsd.prog.mk>
33