95d1f25b28
The test script now resolves the device node into a <label,minor> pair, so that the blocktest driver itself no longer has to. This removes blocktest's dependency on VFS' internal data structures. Also allow blocktest to be linked using with gcc/clang.
13 lines
209 B
Makefile
13 lines
209 B
Makefile
# Makefile for the Block Device Driver Test driver (blocktest)
|
|
PROG= blocktest
|
|
SRCS= blocktest.c
|
|
|
|
DPADD+= ${LIBSYS}
|
|
LDADD+= -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include "Makefile.inc"
|
|
.include <minix.service.mk>
|