include Configfile
include ../src/makefile.all

TARGETS=	src doc

all:
		for i in $(TARGETS) ; do (cd $$i; make all) done
                
install:
		for i in $(TARGETS) ; do (cd $$i; make install) done
		mkdir -p $(ROOT)/mgr/include
		cp -rv font hfont $(ROOT)/mgr
		cp -r include/*.h $(ROOT)/mgr/include

depend:
		for i in src ; do (cd $$i; make depend) done

first:
		install -d $(INCLUDEDIR)
		install -d $(BINDIR)
		install -d $(LIBDIR)
		install -d $(MANDIR)/man1
		install -d $(MANDIR)/man5

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

clobber:
		for i in $(TARGETS) ; do (cd $$i; make clobber) done
		rm -f Configfile
#{{{}}}
