mirror of
https://github.com/opnsense/src.git
synced 2026-04-15 14:29:58 -04:00
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)
16 lines
212 B
Makefile
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>
|