The test is located in test/blocktest. It requires hand-editing of its configuration, and is not part of any automated test set.
14 lines
216 B
Makefile
14 lines
216 B
Makefile
# Makefile for the Block Device Driver Test driver (blocktest)
|
|
PROG= blocktest
|
|
SRCS= blocktest.c optset.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
CPPFLAGS+=-I${MINIXSRCDIR}
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <bsd.prog.mk>
|