X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=Makefile;h=778ea1b35f11db7486625231bbf63033f8f17a88;hb=3f06678b9659b778fd57c5c594c78a8477ae56fc;hp=2d043babf23b0986eb1923de4de86ffd6bd373b1;hpb=3f0b5e7fba46dd6a0ef0217342f86ab3862e073b;p=idzebra-moved-to-github.git diff --git a/Makefile b/Makefile index 2d043ba..778ea1b 100644 --- a/Makefile +++ b/Makefile @@ -1,17 +1,18 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.31 1995-10-12 12:38:40 adam Exp $ +# $Id: Makefile,v 1.35 1995-11-01 16:25:37 quinn Exp $ SHELL=/bin/sh MAKE=make -SUBDIR=util str bfile dfa dict isam rset data1 index base +SUBDIR=util str bfile dfa dict isam rset index RANLIB=ranlib YAZ=../../yaz OSILIB=../../xtimosi/src/libmosi.a $(YAZ)/lib/librfc.a +#NETLIB=-lnsl -lsocket all: - for i in $(SUBDIR); do cd $$i; if $(MAKE) OSILIB="$(OSILIB)" YAZ="$(YAZ)" RANLIB="$(RANLIB)" CFLAGS="$(CFLAGS)" CC="$(CC)"; then cd ..; else exit 1; fi; done + 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 dep depend: for i in $(SUBDIR); do cd $$i; if $(MAKE) YAZ="$(YAZ)" depend; then cd ..; else exit 1; fi; done