* Add this nice filesystem testing tool that I've recently
[dragonfly.git] / test / stress / Makefile
1 # $DragonFly: src/test/stress/Makefile,v 1.1 2003/08/25 19:41:00 dillon Exp $
2 #
3
4 TARGETS=/usr/local/bin/eatmem
5
6 CFLAGS= -O -g -I/usr/src/sys
7
8 all:    $(TARGETS)
9
10 /usr/local/bin/eatmem: eatmem.c
11         $(CC) $(CFLAGS) eatmem.c -o ${.TARGET}
12
13 clean:
14         rm -f $(TARGETS)