include ../../Configfile

PRGS=		mgrsketch mgrload hpmgr icon ico ify misc plot sh text2font
TARGETS=	$(PRGS) $(GROPBM) $(MOVIECLIENTS) $(TEXMGR) $(EXAMPLES)
ALLTARGETS=	$(PRGS) gropbm play_data texmgr examples tests

all:
		for i in $(TARGETS); do (cd $$i; make all); done


install:
		for i in $(TARGETS); do (cd $$i; make install); done


depend:
		for i in mgrsketch mgrload hpmgr icon ico ify misc sh $(GROPBM) $(TEXMGR) tests $(EXAMPLES); do (cd $$i; make depend); done


clean:
		for i in $(ALLTARGETS); do (cd $$i; make clean); done


clobber:
		for i in $(ALLTARGETS); do (cd $$i; make clobber); done

