git: 5b30473577e1 - main - kboot: Use SRCS+= instead of continuation lines

From: Warner Losh <imp_at_FreeBSD.org>
Date: Wed, 09 Apr 2025 21:17:51 UTC
The branch main has been updated by imp:

URL: https://cgit.FreeBSD.org/src/commit/?id=5b30473577e1f843ae02cda90f46b5bf48099531

commit 5b30473577e1f843ae02cda90f46b5bf48099531
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2025-04-09 21:16:54 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-04-09 21:16:54 +0000

    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 d9ce08cb0856..7cdb3db51939 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"