mirror of
https://github.com/opnsense/src.git
synced 2026-04-09 19:37:37 -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 2f16049c985a364e2bd2b256f5bef9af17e10c62)
18 lines
247 B
Makefile
18 lines
247 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus/rtc
|
|
KMOD = rtc8583
|
|
SRCS = rtc8583.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>
|