]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sbin/camcontrol/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sbin / camcontrol / Makefile
1 # $FreeBSD$
2
3 PROG=   camcontrol
4 SRCS=   camcontrol.c util.c
5 .if !defined(RELEASE_CRUNCH)
6 SRCS+=  fwdownload.c modeedit.c progress.c
7 .else
8 CFLAGS+= -DMINIMALISTIC
9 .endif
10 # This is verboten
11 .if ${MACHINE_CPUARCH} == "arm"
12 WARNS?= 3
13 .endif
14 DPADD=  ${LIBCAM} ${LIBSBUF} ${LIBUTIL}
15 LDADD=  -lcam -lsbuf -lutil
16 MAN=    camcontrol.8
17
18 .include <bsd.prog.mk>