# Makefile for building pstext as part of the Harvest Indexer distribution # # $Id: Makefile.in,v 2.2 1997/09/11 16:14:31 sxw Exp $ prefix = INSTALL_BINDIR = $(prefix)/bin INSTALL_LIBDIR = $(prefix)/lib INSTALL_MANDIR = $(prefix)/man CC = cc INSTALL = ../../ INSTALL_BIN = install -o root -g wheel -m 555 INSTALL_FILE = install -o root -g wheel -m 444 RANLIB = ranlib SUBDIRS = libs pstext 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