mirror of
https://github.com/opnsense/src.git
synced 2026-02-25 19:05:20 -05:00
18 lines
219 B
Makefile
18 lines
219 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/iicbus
|
|
|
|
KMOD= ads111x
|
|
SRCS= ads111x.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>
|