freebsd-dev/sbin/camcontrol/Makefile

19 lines
356 B
Makefile
Raw Normal View History

# $FreeBSD$
PACKAGE=runtime
2002-01-24 16:53:08 +00:00
PROG= camcontrol
SRCS= camcontrol.c util.c
.if !defined(RELEASE_CRUNCH)
SRCS+= attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c timestamp.c zone.c
2002-01-24 16:53:08 +00:00
.else
CFLAGS+= -DMINIMALISTIC
.endif
# This is verboten
.if ${MACHINE_CPUARCH} == "arm"
WARNS?= 3
.endif
LIBADD= cam sbuf util
2002-01-24 16:53:08 +00:00
MAN= camcontrol.8
.include <bsd.prog.mk>