1# $FreeBSD: stable/11/sbin/camcontrol/Makefile 310174 2016-12-16 20:24:47Z ken $
2
3PACKAGE=runtime
4PROG=	camcontrol
5SRCS=	camcontrol.c util.c
6.if !defined(RELEASE_CRUNCH)
7SRCS+=	attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
8.else
9CFLAGS+= -DMINIMALISTIC
10.endif
11# This is verboten
12.if ${MACHINE_CPUARCH} == "arm"
13WARNS?= 3
14.endif
15LIBADD=	cam sbuf util
16MAN=	camcontrol.8
17
18.include <bsd.prog.mk>
19