NetBSD/sbin/raidctl/Makefile
oster f675e35d77 RAIDframe, version 1.1, from the Parallel Data Laboratory at
Carnegie Mellon University.  Full RAID implementation, including
levels 0, 1, 4, 5, 6, parity logging, and a few other goodies.
Ported to NetBSD by Greg Oster.

raidctl is our userland configuration tool for RAIDframe.
1998-11-13 04:34:02 +00:00

16 lines
311 B
Makefile

PROG= raidctl
SRCS= rf_configure.c rf_layout.c rf_strutils.c raidctl.c
MAN= raidctl.8
CFLAGS += -Wall
LOOKHERE = ${.CURDIR}/../../sys/dev/raidframe
CFLAGS+= -DCSRG_BASED -DNARROWPROTO -DRF_UTILITY=1 -DSIMULATE=1 -I${LOOKHERE}
.PATH: ${LOOKHERE}
DPADD= ${LIBUTIL}
LDADD= -lutil
.include <bsd.prog.mk>