xref: /freebsd/usr.sbin/mptutil/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1PROG=	mptutil
2SRCS=	mptutil.c mpt_cam.c mpt_cmd.c mpt_config.c mpt_drive.c mpt_evt.c \
3	mpt_show.c mpt_volume.c
4#	mpt_flash.c
5MAN=	mptutil.8
6
7WARNS?= 3
8
9LIBADD=	cam util
10
11# Here be dragons
12.ifdef DEBUG
13CFLAGS+= -DDEBUG
14.endif
15
16.include <bsd.prog.mk>
17