mirror of
https://github.com/opnsense/src.git
synced 2026-02-27 03:40:37 -05:00
It's used in the nanopi-r5s (cherry picked from commit 03205a8cd57feb95752142d899d026ff8f45f3e6)
43 lines
524 B
Makefile
43 lines
524 B
Makefile
|
|
SUBDIR = \
|
|
ads111x \
|
|
controllers \
|
|
cyapa \
|
|
ds1307 \
|
|
ds13rtc \
|
|
ds1672 \
|
|
ds3231 \
|
|
htu21 \
|
|
icee \
|
|
if_ic \
|
|
iic \
|
|
iicbb \
|
|
iicbus \
|
|
iicsmb \
|
|
isl \
|
|
isl12xx \
|
|
jedec_dimm \
|
|
max44009 \
|
|
mux \
|
|
nxprtc \
|
|
pcf8574 \
|
|
pcf8591 \
|
|
rtc8583 \
|
|
s35390a \
|
|
smb \
|
|
smbus \
|
|
|
|
.if !empty(OPT_FDT)
|
|
SUBDIR += hym8563 \
|
|
rv3032 \
|
|
rx8803 \
|
|
tca64xx \
|
|
tmp461
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR += iichid
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|