blob: aca11eeb583fee02602f362c90ce97105ed9bb23 (
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
28
29
30
31
32
|
.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_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+= \
aw_gpio.4 \
aw_mmc.4 \
aw_rtc.4 \
aw_sid.4 \
aw_spi.4 \
aw_syscon.4 \
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>
|