X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=Makefile;h=db52a91ebc9eee8deabea69d34a87b9ea571f2b0;hb=79a521770393bd301230668a5ce950b754bd39c7;hp=778ea1b35f11db7486625231bbf63033f8f17a88;hpb=3f06678b9659b778fd57c5c594c78a8477ae56fc;p=idzebra-moved-to-github.git diff --git a/Makefile b/Makefile index 778ea1b..db52a91 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,30 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.35 1995-11-01 16:25:37 quinn Exp $ +# $Id: Makefile,v 1.38 1995-11-30 17:00:03 adam Exp $ SHELL=/bin/sh MAKE=make -SUBDIR=util str bfile dfa dict isam rset index RANLIB=ranlib -YAZ=../../yaz -OSILIB=../../xtimosi/src/libmosi.a $(YAZ)/lib/librfc.a + +# Where are Yaz libraries located? +YAZLIB=../../yaz/lib/libyaz.a +#YAZLIB=/usr/local/lib/libyazchkr.a +# Where are Yaz header files located? +YAZINC=-I../../yaz/include +# If Yaz is compiled with mosi support uncomment and specify. +OSILIB=../../xtimosi/src/libmosi.a ../../yaz/lib/librfc.a + +# Some systems have seperate socket libraries #NETLIB=-lnsl -lsocket +SUBDIR=util str bfile dfa dict isam rset index + all: - for i in $(SUBDIR); do cd $$i; if $(MAKE) OSILIB="$(OSILIB)" YAZ="$(YAZ)" RANLIB="$(RANLIB)" NETLIB="$(NETLIB)" CFLAGS="$(CFLAGS)" CC="$(CC)"; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) OSILIB="$(OSILIB)" YAZLIB="$(YAZLIB)" YAZINC="$(YAZINC)" RANLIB="$(RANLIB)" NETLIB="$(NETLIB)" CFLAGS="$(CFLAGS)" CC="$(CC)"; then cd ..; else exit 1; fi; done dep depend: - for i in $(SUBDIR); do cd $$i; if $(MAKE) YAZ="$(YAZ)" depend; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) YAZINC="$(YAZINC)" depend; then cd ..; else exit 1; fi; done clean: for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done