]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/mptutil/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.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>