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