This reverts commit 266f97b5e9a7958e365e78288616a459b40d924a, reversing changes made to a10253cffea84c0c980a36ba6776b00ed96c3e3b. A mismerge of a merge to catch up to main resulted in files being committed which should not have been.
43 lines
511 B
Makefile
43 lines
511 B
Makefile
# $FreeBSD$
|
|
|
|
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 += rx8803 \
|
|
tca6416 \
|
|
tmp461
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "aarch64" || ${MACHINE_CPUARCH} == "amd64" || \
|
|
${MACHINE_CPUARCH} == "i386"
|
|
SUBDIR += iichid
|
|
.endif
|
|
|
|
.include <bsd.subdir.mk>
|