# # Makefile for the WordPerfect summarizer component # # $Id: Makefile.in,v 2.2 2000/02/03 12:45:54 sxw Exp $ # SUBDIRS = wp2x-2.3 all: do-all clean: do-clean distclean: do-distclean this-distclean install: do-install this-distclean: rm -f Makefile config.status 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