
all:
	(cd src; make all)

clean:
	find . -name "*~" -print | xargs rm -f
	rm -f config.ph phttpd.log src/headers src/*.o bin/* errors/*
	rm -f results/* status/* html/merlin.html parameters/*
	rm -rf databases

