4e57e81c1a
Reviewed by: ian Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D16368
20 lines
249 B
Makefile
20 lines
249 B
Makefile
# $FreeBSD$
|
|
|
|
.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
|
|
|
|
.include <bsd.kmod.mk>
|