#	
# Makefile examples
#
TOPDIR  = ..

include $(TOPDIR)/make.conf


DIRS	= gg1 fddi gist


all clean veryclean depend tests install::
	for d in $(DIRS); do \
	    if [ -d $$d ]; then (cd $$d; echo $$d; $(MAKE) $@); fi;\
	done

World:
	$(TOPDIR)/bin/touchdepend
	$(MAKE) clean
	$(MAKE) depend
	$(MAKE) all

include $(TOPDIR)/make.common
