mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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)
16 lines
207 B
Makefile
16 lines
207 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/adc
|
|
KMOD= pcf8591
|
|
SRCS= pcf8591.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>
|