scottl 485a598922 Add mptutil, a basic utility for managing MPT SCSI/SATA/SAS controllers.
Drive and controller status can be reported, basic attributes changed,
and arrays and spares can be created and deleted.

Approved by:	re
Obtained from:	Yahoo! Inc.
2009-08-14 13:13:12 +00:00

20 lines
296 B
Makefile

# $FreeBSD$
PROG= mptutil
SRCS= mptutil.c mpt_cam.c mpt_cmd.c mpt_config.c mpt_drive.c mpt_evt.c \
mpt_show.c mpt_volume.c
# mpt_flash.c
MAN= mptutil.8
WARNS?= 3
DPADD+= ${LIBCAM} ${LIBUTIL}
LDADD+= -lcam -lutil
# Here be dragons
.ifdef DEBUG
CFLAGS+= -DDEBUG
.endif
.include <bsd.prog.mk>