]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - usr.sbin/mptutil/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / usr.sbin / mptutil / Makefile
1 # $FreeBSD$
2
3 PROG=   mptutil
4 SRCS=   mptutil.c mpt_cam.c mpt_cmd.c mpt_config.c mpt_drive.c mpt_evt.c \
5         mpt_show.c mpt_volume.c
6 #       mpt_flash.c
7 MAN=    mptutil.8
8
9 WARNS?= 3
10
11 DPADD=  ${LIBCAM} ${LIBSBUF} ${LIBUTIL}
12 LDADD=  -lcam -lsbuf -lutil
13
14 # Here be dragons
15 .ifdef DEBUG
16 CFLAGS+= -DDEBUG
17 .endif
18
19 .include <bsd.prog.mk>