mirror of
https://github.com/opnsense/src.git
synced 2026-06-04 22:32:43 -04:00
No reason that they should live directly under iicbus
Sponsored by: Beckhoff Automation GmbH & Co. KG
Differential Revision: https://reviews.freebsd.org/D41908
(cherry picked from commit 2f16049c98)
18 lines
245 B
Makefile
18 lines
245 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/rtc
|
|
KMOD = ds1672
|
|
SRCS = ds1672.c
|
|
|
|
# Generated files...
|
|
SRCS+= \
|
|
bus_if.h \
|
|
clock_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>
|