mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
MK_NVME is no longer marked broken for any platforms, so just include support for it always as we do for ATA and SCSI. Reviewed by: emaste Sponsored by: Chelsio Communications Differential Revision: https://reviews.freebsd.org/D44841 (cherry picked from commit 2b676a66c00af03e4b64d072658d2478dbdf0a97)
30 lines
533 B
Makefile
30 lines
533 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=runtime
|
|
PROG= camcontrol
|
|
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
|
|
.PATH: ${SRCTOP}/sbin/nvmecontrol
|
|
CFLAGS+= -I${SRCTOP}/sbin/nvmecontrol
|
|
SRCS+= identify_ext.c
|
|
SRCS+= nc_util.c
|
|
.PATH: ${SRCTOP}/sys/dev/nvme
|
|
SRCS+= nvme_util.c
|
|
# This is verboten
|
|
.if ${MACHINE_CPUARCH} == "arm"
|
|
WARNS?= 3
|
|
.endif
|
|
LIBADD= cam sbuf util
|
|
MAN= camcontrol.8
|
|
|
|
.include <bsd.prog.mk>
|