opnsense-src/sys/modules/i2c/ads111x/Makefile
Emmanuel Vadot cd2f6226e7 iicbus: Move ADC drivers into a new adc subfolder
No reason that they should live directly under iicbus

Sponsored by:   Beckhoff Automation GmbH & Co. KG
Differential Revision:	https://reviews.freebsd.org/D41911

(cherry picked from commit 06589d6e029c6ff64a7816d743e0a508abe6193b)
2023-10-18 16:32:11 +02:00

17 lines
211 B
Makefile

.PATH: ${SRCTOP}/sys/dev/iicbus/adc
KMOD= ads111x
SRCS= ads111x.c
SRCS+= \
bus_if.h \
device_if.h \
iicbus_if.h \
opt_platform.h \
.if !empty(OPT_FDT)
SRCS+= ofw_bus_if.h
.endif
.include <bsd.kmod.mk>