# $Id: Makefile.in,v 2.2 1997/11/04 18:15:17 sxw Exp $ srcdir = @srcdir@ VPATH = $(srcdir) prefix = @prefix@ INSTALL_BINDIR = $(prefix)/bin INSTALL_LIBDIR = $(prefix)/lib INSTALL_MANDIR = $(prefix)/man INSTALL_UTILDIR = $(INSTALL_LIBDIR)/gatherer CC = @CC@ INSTALL = @INSTALL@ INSTALL_BIN = @INSTALL_PROGRAM@ INSTALL_FILE = @INSTALL_DATA@ RANLIB = @RANLIB@ SUBDIRS=crc fileio util hexbin all: do-all clean: do-clean distclean: do-distclean this-distclean install: do-install this-distclean: -rm -f Makefile 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