1.PHONY: test clean
2
3DEBUG=
4
5test:
6	./test cache "${DEBUG}"
7	./test page "${DEBUG}"
8	./test memdb "${DEBUG}"
9	./test socket "${DEBUG}"
10	./test pfa "${DEBUG}"
11	./test unknown "${DEBUG}"
12	./test server "${DEBUG}"
13	./mcaerr_test -a
14
15clean:
16	rm -f */*log
17	rm -f */results*
18