]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/camcontrol/Makefile
Add 'contrib/libdiff/' from commit '9eb461aa4b61ab47855b2cee9e5b626a76888b5e'
[FreeBSD/FreeBSD.git] / sbin / camcontrol / Makefile
1
2 .include <src.opts.mk>
3
4 PACKAGE=runtime
5 PROG=   camcontrol
6 SRCS=   camcontrol.c
7 SRCS+=  attrib.c
8 SRCS+=  depop.c
9 SRCS+=  epc.c
10 SRCS+=  fwdownload.c
11 SRCS+=  modeedit.c
12 SRCS+=  persist.c
13 SRCS+=  progress.c
14 SRCS+=  timestamp.c
15 SRCS+=  util.c
16 SRCS+=  zone.c
17 .if ${MK_NVME} != "no"
18 .PATH:  ${SRCTOP}/sbin/nvmecontrol
19 CFLAGS+= -I${SRCTOP}/sbin/nvmecontrol -DWITH_NVME
20 SRCS+=  identify_ext.c
21 SRCS+=  nc_util.c
22 .PATH:  ${SRCTOP}/sys/dev/nvme
23 SRCS+=  nvme_util.c
24 .endif
25 # This is verboten
26 .if ${MACHINE_CPUARCH} == "arm"
27 WARNS?= 3
28 .endif
29 LIBADD= cam sbuf util
30 MAN=    camcontrol.8
31
32 .include <bsd.prog.mk>