kboot: List sources one per line to make merges easier

Make SRC an alphabetical list of files, one per line.

Sponsored by:		Netflix
This commit is contained in:
Warner Losh 2022-09-01 11:07:34 -06:00
parent 57f90cf813
commit 69818bcf38

View File

@ -18,9 +18,18 @@ NEWVERSWHAT= "kboot loader" ${MACHINE_ARCH}
INSTALLFLAGS= -b
# Architecture-specific loader code
SRCS= crt1.c conf.c vers.c main.c host_syscalls.c hostcons.c hostdisk.c kbootfdt.c gfx_fb_stub.c
SRCS+= init.c
SRCS+= termios.c
SRCS= \
conf.c \
crt1.c \
gfx_fb_stub.c \
host_syscalls.c \
hostcons.c \
hostdisk.c \
init.c \
kbootfdt.c \
main.c \
termios.c \
vers.c \
CFLAGS.gfx_fb_stub.c += -I${SRCTOP}/contrib/pnglite -I${SRCTOP}/sys/teken