# --------------------------------------------------------------------------
# Copyright 1992-1994 by Forschungszentrum Informatik (FZI)
# All rights reserved.
#
# You can use and distribute this software under the terms of the license
# you should have received along with this software; either version 1.1 of
# the license, or (at your option) any later version.
# For a copy of the license or for additional information about this software,
# write to Xcc Software, Durlacher Allee 53, D-76131 Karlsruhe, Germany;
# Email: obst@xcc-ka.de.
# --------------------------------------------------------------------------
.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
