]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/camcontrol/Makefile
setclasspriority(): New possible value 'inherit'
[FreeBSD/FreeBSD.git] / sbin / camcontrol / Makefile
1
2 .include <src.opts.mk>
3
4 PACKAGE=runtime
5 PROG=   camcontrol
6 SRCS=   camcontrol.c util.c
7 SRCS+=  attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
8 .if ${MK_NVME} != "no"
9 .PATH:  ${SRCTOP}/sbin/nvmecontrol
10 CFLAGS+= -I${SRCTOP}/sbin/nvmecontrol -DWITH_NVME
11 SRCS+=  identify_ext.c nc_util.c
12 .PATH:  ${SRCTOP}/sys/dev/nvme
13 SRCS+=  nvme_util.c
14 .endif
15 # This is verboten
16 .if ${MACHINE_CPUARCH} == "arm"
17 WARNS?= 3
18 .endif
19 LIBADD= cam sbuf util
20 MAN=    camcontrol.8
21
22 .include <bsd.prog.mk>