blob: b13ba095cc022f8acce8ae9903e7ed64f9e5d3ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# Makefile for the Block Device Driver Test driver (blocktest)
PROG= blocktest
SRCS= blocktest.c
FILES= system.conf support.sh test.sh README
DPADD+= ${LIBSYS}
LDADD+= -lsys
MAN=
BINDIR?= /usr/tests/minix-posix/blocktest
FILESDIR?= /usr/tests/minix-posix/blocktest
.include "Makefile.inc"
.include <minix.service.mk>
|