
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.
16 lines
311 B
Makefile
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>
|