NetBSD/sbin/raidctl/Makefile
oster 705631a231 Move parts of a RAID type mapping table from rf_layout.c to rf_configure.c.
This means we don't need to compile or link with rf_layout.c here.
2001-01-27 19:32:47 +00:00

17 lines
297 B
Makefile

# $NetBSD: Makefile,v 1.8 2001/01/27 19:32:47 oster Exp $
PROG= raidctl
SRCS= rf_configure.c raidctl.c
MAN= raidctl.8
WARNS=2
LOOKHERE = ${.CURDIR}/../../sys/dev/raidframe
CPPFLAGS+= -DRF_UTILITY=1 -I${LOOKHERE}
.PATH: ${LOOKHERE}
DPADD= ${LIBUTIL}
LDADD= -lutil
.include <bsd.prog.mk>