# generic utility modules # (c) 2001 jannet it services # contact@jannet.de # $Id$ EXE_BASENAME ?= test_$(notdir $(shell pwd)) include $(MODDIR)/make/exe.mk test: test.done clean: testclean test.done: if ! 2>&1 make run > test.out 2>&1; then \ $(CAT) test.out; \ exit 1; \ fi touch $@ testclean: rm -rf test.done test.out