aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2023-12-01 03:07:53 +0000
committerWarner Losh <imp@FreeBSD.org>2023-12-07 20:21:57 +0000
commit69ae43a1e6a53a1b8898a31c6b7140bf52b2c3ad (patch)
treed6c3eede29de2f2f6f4e34f777f63db9ad58fd6c
parent8a0ee306227a17a998bdc7af2275fd94b9164342 (diff)
downloadsrc-69ae43a1e6a53a1b8898a31c6b7140bf52b2c3ad.tar.gz
src-69ae43a1e6a53a1b8898a31c6b7140bf52b2c3ad.zip
camcontrol: One file per line in Makefile
We have enough files now that moving to one file per line makes sense. Sponsored by: Netflix
-rw-r--r--sbin/camcontrol/Makefile16
1 files changed, 13 insertions, 3 deletions
diff --git a/sbin/camcontrol/Makefile b/sbin/camcontrol/Makefile
index d47dbdc43bd7..e0407dd20a56 100644
--- a/sbin/camcontrol/Makefile
+++ b/sbin/camcontrol/Makefile
@@ -3,12 +3,22 @@
PACKAGE=runtime
PROG= camcontrol
-SRCS= camcontrol.c util.c
-SRCS+= attrib.c depop.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
+SRCS= camcontrol.c
+SRCS+= attrib.c
+SRCS+= depop.c
+SRCS+= epc.c
+SRCS+= fwdownload.c
+SRCS+= modeedit.c
+SRCS+= persist.c
+SRCS+= progress.c
+SRCS+= timestamp.c
+SRCS+= util.c
+SRCS+= zone.c
.if ${MK_NVME} != "no"
.PATH: ${SRCTOP}/sbin/nvmecontrol
CFLAGS+= -I${SRCTOP}/sbin/nvmecontrol -DWITH_NVME
-SRCS+= identify_ext.c nc_util.c
+SRCS+= identify_ext.c
+SRCS+= nc_util.c
.PATH: ${SRCTOP}/sys/dev/nvme
SRCS+= nvme_util.c
.endif