opnsense-src/sys/modules/i2c/max44009/Makefile
Emmanuel Vadot 96edbfe36b iicbus: Move i2c sensors drivers into new sensor subdirectory
No reason that they should live directly under iicbus

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

(cherry picked from commit 7c569caa0a6fffa7e1cc0a7f61e986dbc7c59074)
2023-10-18 16:32:14 +02:00

16 lines
212 B
Makefile

.PATH: ${SRCTOP}/sys/dev/iicbus/sensor
KMOD= max44009
SRCS= max44009.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>