mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
camcontrol: One file per line in Makefile
We have enough files now that moving to one file per line makes sense. Sponsored by: Netflix (cherry picked from commit 69ae43a1e6a53a1b8898a31c6b7140bf52b2c3ad)
This commit is contained in:
parent
40f573de8a
commit
e13b9fb02f
1 changed files with 13 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue