git: 49ea0889f2cb - main - nvmecontrol: One file per line
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 17 Apr 2024 03:33:57 UTC
The branch main has been updated by imp:
URL: https://cgit.FreeBSD.org/src/commit/?id=49ea0889f2cb5e786e166fa9536c84f4a9994a6b
commit 49ea0889f2cb5e786e166fa9536c84f4a9994a6b
Author: Warner Losh <imp@FreeBSD.org>
AuthorDate: 2024-04-16 22:37:30 +0000
Commit: Warner Losh <imp@FreeBSD.org>
CommitDate: 2024-04-17 03:30:19 +0000
nvmecontrol: One file per line
Move to a one file per line setup, and sort the files alphabetically.
Sponsored by: Netflix
Reviewed by: chuck, jhb
Differential Revision: https://reviews.freebsd.org/D44684
---
sbin/nvmecontrol/Makefile | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/sbin/nvmecontrol/Makefile b/sbin/nvmecontrol/Makefile
index e3d363b123ed..f534093b1332 100644
--- a/sbin/nvmecontrol/Makefile
+++ b/sbin/nvmecontrol/Makefile
@@ -2,11 +2,24 @@
PACKAGE=nvme-tools
PROG= nvmecontrol
-SRCS= comnd.c nvmecontrol.c
-SRCS+= devlist.c firmware.c format.c identify.c logpage.c ns.c nsid.c
-SRCS+= perftest.c power.c reset.c resv.c sanitize.c
+SRCS+= comnd.c
+SRCS+= devlist.c
+SRCS+= firmware.c
+SRCS+= format.c
+SRCS+= identify.c
+SRCS+= identify_ext.c
+SRCS+= logpage.c
+SRCS+= nc_util.c
+SRCS+= ns.c
+SRCS+= nsid.c
+SRCS+= nvme_util.c
+SRCS+= nvmecontrol.c
SRCS+= passthru.c
-SRCS+= identify_ext.c nvme_util.c nc_util.c
+SRCS+= perftest.c
+SRCS+= power.c
+SRCS+= reset.c
+SRCS+= resv.c
+SRCS+= sanitize.c
SRCS+= selftest.c
MAN= nvmecontrol.8
LDFLAGS+= -rdynamic