Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / test / stress / fsstress / Makefile
1 # $DragonFly: src/test/stress/fsstress/Makefile,v 1.1 2004/05/07 17:51:02 dillon Exp $
2 #
3 CFLAGS= -g -DNO_XFS -I. -D_LARGEFILE64_SOURCE -Wall -Wstrict-prototypes
4 FILES=  Makefile README fsstress.c global.h xfscompat.h dotest.sample
5
6 all: /tmp/fsstress
7
8 fsstress.c: global.h xfscompat.h
9
10 /tmp/fsstress: fsstress.c
11         $(CC) $(CFLAGS) ${.ALLSRC} -o ${.TARGET}
12
13 clean:
14         rm -f fsstress.o /tmp/fsstress fsstress.core fsstress-1.00.tgz
15
16 tar:
17         tar czf fsstress-1.00.tgz $(FILES)