From 5b30473577e1f843ae02cda90f46b5bf48099531 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Wed, 9 Apr 2025 15:16:54 -0600 Subject: [PATCH] kboot: Use SRCS+= instead of continuation lines Use SRCS+= to allow for better ifdefs Sponsored by: Netflix --- stand/kboot/libkboot/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stand/kboot/libkboot/Makefile b/stand/kboot/libkboot/Makefile index d9ce08cb085..7cdb3db5193 100644 --- a/stand/kboot/libkboot/Makefile +++ b/stand/kboot/libkboot/Makefile @@ -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"