# # Makefile for the Admin components # # $Id: Makefile.in,v 2.1 1997/11/04 18:14:22 sxw Exp $ # # srcdir = @srcdir@ VPATH = $(srcdir) SUBDIRS=`cat $(srcdir)/BUILD` all: do-all install: do-install clean: do-clean distclean: do-distclean this-distclean this-distclean: -rm -f Makefile config.status config.cache config.log DO_X = do-clean do-distclean do-all do-install $(DO_X): @target=`echo $@ | sed -e 's/^do-//'`; \ for dir in $(SUBDIRS); do \ echo Making $$target in $$dir; \ if (cd $$dir; $(MAKE) $(MFLAGS) $${target}); \ then true; else exit 1; fi; \ done