# --------------------------------------------------------------------------
# Copyright 1992 by Forschungszentrum Informatik (FZI)
#
# You can use and distribute this software under the terms of the license
# version 1 you should have received along with this software.
# If not or if you want additional information, write to
# Forschungszentrum Informatik, "STONE", Haid-und-Neu-Strasse 10-14,
# D-76131 Karlsruhe, Germany.
# --------------------------------------------------------------------------
.SUFFIXES:

include tut_common.mk

EXAMPLES=$(SAMPLE)

default:
	@ echo 'Sorry, no DWIM running ...'

clean:
	@ for dir in $(EXAMPLES)/*/Makefile ; do \
	     { cd `dirname $$dir`; make clean; };\
	  done

realclean:
	@ for dir in $(EXAMPLES)/*/Makefile ; do \
	     { cd `dirname $$dir`; make realclean; };\
	  done
