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