xref: /NextBSD/sbin/camcontrol/Makefile (revision 287e3b14e9552995def1802ec9c5034f4adf28ec)
1# $FreeBSD$
2
3PROG=	camcontrol
4SRCS=	camcontrol.c util.c
5.if !defined(RELEASE_CRUNCH)
6SRCS+=	attrib.c 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