d003492f75
- Expand the SMART / Health Information Log Page (Page 02) printout based on NVM Express 1.2.1 Standard. - Implement Intel-specific log pages. - Implement HGST-specific log pages. - Implement wdc-specific nvme control options. - Add the ability to dump log pages directly in binary to stdout.
23 lines
359 B
Makefile
23 lines
359 B
Makefile
# $NetBSD: Makefile,v 1.3 2017/04/29 00:06:40 nonaka Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= nvmectl
|
|
SRCS= nvmectl.c
|
|
SRCS+= devlist.c
|
|
SRCS+= firmware.c
|
|
SRCS+= identify.c
|
|
SRCS+= logpage.c
|
|
SRCS+= perftest.c
|
|
SRCS+= power.c
|
|
SRCS+= reset.c
|
|
SRCS+= wdc.c
|
|
SRCS+= bignum.c
|
|
SRCS+= humanize_bignum.c
|
|
MAN= nvmectl.8
|
|
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
|
|
.include <bsd.prog.mk>
|