freebsd-dev/sys/modules/pwm/Makefile
Emmanuel Vadot 4a84542103 pwm_backlight: Restrict module to armv7 and aarch64
Both powerpc64 and riscv uses fdt but don't use EXT_RESOURCES.

Reported by:	jenkins
2020-10-02 19:56:54 +00:00

16 lines
222 B
Makefile

# $FreeBSD$
# Modules for dev/pwm drivers.
SUBDIR = \
pwmbus \
pwmc \
.if ${MACHINE_ARCH} == "armv7" || ${MACHINE_ARCH} == "aarch64"
.if !empty(OPT_FDT)
SUBDIR += pwm_backlight
.endif
.endif
.include <bsd.subdir.mk>