Date: Wed, 9 Apr 2025 21:17:51 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 5b30473577e1 - main - kboot: Use SRCS+= instead of continuation lines Message-ID: <202504092117.539LHpU1077914@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202504092117.539LHpU1077914>