freebsd-dev/sys/modules/spigen/Makefile
Ian Lepore c951fe9258 Arrange the list of generated sources as 1-per-line alphbetical, and add
the files required when building for FDT-based systems.
2018-04-07 19:09:57 +00:00

19 lines
236 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 \
spibus_if.h \
.if !empty(OPT_FDT)
SRCS+= ofw_bus_if.h
.endif
.include <bsd.kmod.mk>