X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=Makefile;h=c0272ffa1d704f86d84812d5d6aa2bd407e5a616;hb=889c4058f1b6330d51f9f26fea7c1fe2148c85e8;hp=d336abe91ed4ac6394a9032854c1e27ffd97459f;hpb=6267fd01b3e62d480be6a36991675ad0b04948ac;p=idzebra-moved-to-github.git diff --git a/Makefile b/Makefile index d336abe..c0272ff 100644 --- a/Makefile +++ b/Makefile @@ -1,26 +1,51 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.10 1994-09-02 14:58:38 quinn Exp $ +# $Id: Makefile,v 1.26 1995-09-04 12:32:45 adam Exp $ SHELL=/bin/sh -SUBDIR=util bfile dict +MAKE=make +SUBDIR=util str bfile dfa dict isam rset index it base +RANLIB=ranlib +YAZ=../../yaz all: - for i in $(SUBDIR); do cd $$i; if make; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) YAZ="$(YAZ)" RANLIB="$(RANLIB)" CFLAGS="$(CFLAGS)" CC="$(CC)"; then cd ..; else exit 1; fi; done dep depend: - for i in $(SUBDIR); do (cd $$i; make dep); done + for i in $(SUBDIR); do cd $$i; if $(MAKE) YAZ="$(YAZ)" depend; then cd ..; else exit 1; fi; done clean: - for i in $(SUBDIR); do (cd $$i; make clean); done + for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done + rm -f lib/*.a cleanup: - rm -f `find $(SUBDIR) -name "*.o" -print` + rm -f `find $(SUBDIR) -name "*.[oa]" -print` rm -f `find $(SUBDIR) -name "core" -print` rm -f `find $(SUBDIR) -name "errlist" -print` rm -f `find $(SUBDIR) -name "a.out" -print` +cleandepend: + for i in $(SUBDIR); do (cd $$i; \ + if sed '/^#Depend/q' Makefile.tmp; then \ + mv -f Makefile.tmp Makefile; fi; rm -f .depend); done + +taildepend: + for i in $(SUBDIR); do (cd $$i; \ + if sed 's/^if/#if/' Makefile.tmp; then \ + mv -f Makefile.tmp Makefile; fi); done + +gnudepend: + for i in $(SUBDIR); do (cd $$i; \ + if sed '/^#Depend/q' Makefile.tmp;then \ + mv -f Makefile.tmp Makefile; fi); done + wc: wc `find . -name '*.[ch]'`