1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-14 10:09:48 +00:00
freebsd/usr.sbin/mpsutil/Makefile
Baptiste Daroussin 125c7a1e56 Fix buildworld
Sponsored by:	gandi.net
2015-08-14 10:17:52 +00:00

21 lines
260 B
Makefile

# $FreeBSD$
PROG= mpsutil
SRCS= mpsutil.c mps_cmd.c mps_show.c
# mpt_flash.c
MAN= mpsutil.8
WARNS?= 3
LIBADD= cam util
CFLAGS+= -I${.CURDIR}/../../sys -I. -DUSE_MPT_IOCTLS -g
# Here be dragons
.ifdef DEBUG
CFLAGS+= -DDEBUG
.endif
.include <bsd.prog.mk>