1 2.include <src.opts.mk> 3 4PACKAGE=runtime 5PROG= camcontrol 6SRCS= camcontrol.c util.c 7SRCS+= attrib.c depop.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 10CFLAGS+= -I${SRCTOP}/sbin/nvmecontrol -DWITH_NVME 11SRCS+= identify_ext.c nc_util.c 12.PATH: ${SRCTOP}/sys/dev/nvme 13SRCS+= nvme_util.c 14.endif 15# This is verboten 16.if ${MACHINE_CPUARCH} == "arm" 17WARNS?= 3 18.endif 19LIBADD= cam sbuf util 20MAN= camcontrol.8 21 22.include <bsd.prog.mk> 23