]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sbin/camcontrol/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sbin / camcontrol / Makefile
1 # $FreeBSD$
2
3 PROG=   camcontrol
4 SRCS=   camcontrol.c util.c
5 .if !defined(RELEASE_CRUNCH)
6 SRCS+=  modeedit.c
7 .else
8 CFLAGS+= -DMINIMALISTIC
9 .endif
10 .if ${MACHINE_ARCH} == "arm"
11 WARNS?= 3
12 .else
13 WARNS?= 6
14 .endif
15 DPADD=  ${LIBCAM} ${LIBSBUF} ${LIBUTIL}
16 LDADD=  -lcam -lsbuf -lutil
17 MAN=    camcontrol.8
18
19 .include <bsd.prog.mk>