kboot: Use SRCS+= instead of continuation lines

Use SRCS+= to allow for better ifdefs

Sponsored by:		Netflix
This commit is contained in:
Warner Losh
2025-04-09 15:16:54 -06:00
parent c84d43b57c
commit 5b30473577
+4 -4
View File
@@ -6,10 +6,10 @@ WARNS?= 4
.PATH: ${.CURDIR}/arch/${MACHINE_ARCH}
CFLAGS+=-I${.CURDIR} -I${.CURDIR}/arch/${MACHINE_ARCH}
SRCS= crt1.c \
host_syscall.S \
host_syscalls.c \
termios.c
SRCS= crt1.c
SRCS+= host_syscall.S
SRCS+= host_syscalls.c
SRCS+= termios.c
.sinclude "${.CURDIR}/arch/${MACHINE_ARCH}/Makefile.inc"