1# $FreeBSD$ 2 3PROG= camcontrol 4SRCS= camcontrol.c util.c 5.if !defined(RELEASE_CRUNCH) 6SRCS+= fwdownload.c modeedit.c persist.c progress.c 7.else 8CFLAGS+= -DMINIMALISTIC 9.endif 10# This is verboten 11.if ${MACHINE_CPUARCH} == "arm" 12WARNS?= 3 13.endif 14LIBADD= cam sbuf util 15MAN= camcontrol.8 16 17.include <bsd.prog.mk> 18