Makefile revision 1.1
1#	$eterna: Makefile,v 1.11 2002/10/02 15:47:33 mrg Exp $
2
3SIMPLETESTS=	t1 t2 t3 t4 t5 t6
4BOZOHTTPD?=	../bozohttpd
5
6all:
7
8clean:
9	for a in $(SIMPLETESTS); do \
10		rm -f tmp.$$a.out; \
11	done
12
13check:
14.for a in $(SIMPLETESTS)
15	echo "Running test $a"
16	$(BOZOHTTPD) ./data < $(.CURDIR)/$a.in > tmp.$a.out || true
17	$(.CURDIR)/html_cmp $(.CURDIR)/$a.out tmp.$a.out
18.endfor
19
20.include <bsd.obj.mk>
21