]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - sbin/camcontrol/Makefile
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.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>