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 bcm283x_pwm.4 \ 18 19.endif 20 21# Link files to the architecture directory. 22_ARCH_SUBDIR=aarch64 23.for _manpage in ${MAN} 24MLINKS+=${_manpage} ${_ARCH_SUBDIR}/${_manpage} 25.endfor 26 27.include <bsd.prog.mk> 28