mirror of
https://github.com/opnsense/src.git
synced 2026-02-20 00:11:07 -05:00
20 lines
255 B
Makefile
20 lines
255 B
Makefile
|
|
.PATH: ${SRCTOP}/sys/dev/spibus
|
|
KMOD= spigen
|
|
SRCS= spigen.c
|
|
|
|
# Generated files...
|
|
SRCS+= \
|
|
bus_if.h \
|
|
device_if.h \
|
|
opt_platform.h \
|
|
opt_spi.h \
|
|
spibus_if.h \
|
|
|
|
.if !empty(OPT_FDT)
|
|
SRCS+= ofw_bus_if.h
|
|
.endif
|
|
|
|
EXPORT_SYMS= YES
|
|
|
|
.include <bsd.kmod.mk>
|