ef7a2ead30
I merged passthru.c from the wrong branch (it was a branch that went further in a direction I wound up not taking). Fix the mismerge and turn passthru on.
19 lines
408 B
Makefile
19 lines
408 B
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE=runtime
|
|
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+= passthru.c
|
|
SRCS+= identify_ext.c nvme_util.c nc_util.c
|
|
MAN= nvmecontrol.8
|
|
LDFLAGS+= -rdynamic
|
|
LIBADD+= util
|
|
SUBDIR= modules
|
|
|
|
.PATH: ${SRCTOP}/sys/dev/nvme
|
|
|
|
.include <bsd.prog.mk>
|
|
.include <bsd.subdir.mk>
|