1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Arrange the list of generated sources as 1-per-line alphbetical, and add

the files required when building for FDT-based systems.
This commit is contained in:
Ian Lepore 2018-04-07 19:09:57 +00:00
parent ade70a1ad1
commit c951fe9258
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=332198

View File

@ -3,6 +3,16 @@
.PATH: ${SRCTOP}/sys/dev/spibus
KMOD= spigen
SRCS= spigen.c
SRCS+= device_if.h bus_if.h opt_platform.h spibus_if.h
# 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>