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