# generic utility modules # (c) 2001 jannet it services # contact@jannet.de # $Id$ ifeq ($(EXE),) EXE = $(notdir $(shell pwd)) endif 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; \ fi touch $@ testclean: rm -rf test.done test.out