X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=Makefile.in;h=bd2c11bce90280ece5b942caafd098f0b89d3c3d;hp=05a2bf532ea88382a327311906cafc2add8fdb99;hb=161ec45b40a3ab08e08946c9654ab6fea4604760;hpb=bf7ee634e855d15e955d06e7b225d2045abd518a diff --git a/Makefile.in b/Makefile.in index 05a2bf5..bd2c11b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,7 +1,7 @@ # Copyright (C) 1995-1999, Index Data # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile.in,v 1.6 1999-04-16 14:45:55 adam Exp $ +# $Id: Makefile.in,v 1.8 1999-06-08 10:10:15 adam Exp $ # Uncomment the lines below to enable mOSI communcation. #CDEFS=-DUSE_XTIMOSI @@ -22,7 +22,7 @@ CC=@CC@ CPP=@CPP@ SHELL=/bin/sh MAKE=make -SUBDIR=$(MOD) util odr $(RFC1006) ccl comstack retrieval client server ztest lib +SUBDIR=$(MOD) util odr zutil $(RFC1006) ccl comstack retrieval client server ztest lib # Add external libraries to the LIBS macro LIBS=@LIBS@ @@ -41,17 +41,17 @@ INCDIR=$(prefix)/include YAZDIR=$(prefix)/lib/yaz all: - for i in $(SUBDIR); do cd $$i; if $(MAKE) CC="$(CC)" \ + for i in $(SUBDIR); do (cd $$i; $(MAKE) CC="$(CC)" \ RANLIB="$(RANLIB)" LIBS="$(LIBS)" \ INCLUDE="$(INCLUDE)" CFLAGS="$(CFLAGS)" \ CDEFS="$(CDEFS)" \ - LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)";\ - then cd ..; else exit 1; fi; done + LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)");\ + done dep depend: - for i in $(SUBDIR); do cd $$i; if $(MAKE) CPP="$(CPP)" \ - INCLUDE="$(INCLUDE)" CDEFS="$(CDEFS)" depend;\ - then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do (cd $$i; $(MAKE) CPP="$(CPP)" \ + INCLUDE="$(INCLUDE)" CDEFS="$(CDEFS)" depend);\ + done clean: for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done