git: 69818bcf38e0 - main - kboot: List sources one per line to make merges easier
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 01 Sep 2022 17:11:24 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=69818bcf38e0bb1716a8d29f61ed392d447cea83
commit 69818bcf38e0bb1716a8d29f61ed392d447cea83
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2022-09-01 17:07:34 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2022-09-01 17:08:32 +0000
kboot: List sources one per line to make merges easier
Make SRC an alphabetical list of files, one per line.
Sponsored by: Netflix
---
stand/kboot/Makefile | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/stand/kboot/Makefile b/stand/kboot/Makefile
index b8e71fd70dc7..c204af8b17e7 100644
--- a/stand/kboot/Makefile
+++ b/stand/kboot/Makefile
@@ -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