nrelease - fix/improve livecd
[dragonfly.git] / test / stress / fsstress / Makefile
1 CFLAGS= -g -DNO_XFS -I. -D_LARGEFILE64_SOURCE -Wall -Wstrict-prototypes
2 FILES=  Makefile README fsstress.c global.h xfscompat.h dotest.sample
3
4 all: /tmp/fsstress
5
6 fsstress.c: global.h xfscompat.h
7
8 /tmp/fsstress: fsstress.c
9         ${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET}
10
11 clean:
12         rm -f fsstress.o /tmp/fsstress fsstress.core fsstress-1.00.tgz
13
14 tar:
15         tar czf fsstress-1.00.tgz ${FILES}