X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=Makefile;h=18c317ca2eeda0f4f15fc6313f7f61a6d28d1d30;hp=ae273758b7452aff6e89529771d602253d3fe845;hb=8de81d57ebf189d37a160fe66df667b50ba7cb86;hpb=7eb2f0de616840d9a340519eac4c271820cd1248 diff --git a/Makefile b/Makefile index ae27375..18c317c 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ -# Copyright (C) 1995-1997, Index Data I/S +# Copyright (C) 1995-1998, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.34 1997-09-05 09:50:55 adam Exp $ +# $Id: Makefile,v 1.38 1998-04-02 14:33:29 adam Exp $ # Uncomment the lines below to enable mOSI communcation. #ODEFS=-DUSE_XTIMOSI @@ -10,12 +10,22 @@ #XMOSI=xmosi.o CDEFS=$(ODEFS) + +#INCLUDE=-I../z39.50 -I. -I../include +#MOD=z39.50 + +INCLUDE=-I. -I../include +MOD=asn + #CC= SHELL=/bin/sh MAKE=make -SUBDIR=util odr asn $(RFC1006) ccl comstack retrieval client server ztest makelib +SUBDIR=$(MOD) util odr $(RFC1006) ccl comstack retrieval client server ztest makelib # Add external libraries to the ELIBS macro ELIBS= +# For Solaris add use: +#ELIBS=-lnsl -lsocket + CONTROL=RANLIB="ranlib" ELIBS="$(ELIBS)" # Installation directories, etc. @@ -29,11 +39,12 @@ YAZDIR=/usr/local/lib/yaz all: for i in $(SUBDIR); do cd $$i; if $(MAKE) $(CONTROL) \ - CFLAGS="$(CFLAGS) $(CDEFS)" LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)";\ + INCLUDE="$(INCLUDE)" CFLAGS="$(CFLAGS)" CDEFS="$(CDEFS)" LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)";\ then cd ..; else exit 1; fi; done dep depend: - for i in $(SUBDIR); do cd $$i; if $(MAKE) depend; then cd ..; else exit 1; fi; done + for i in $(SUBDIR); do cd $$i; if $(MAKE) INCLUDE="$(INCLUDE)" CDEFS="$(CDEFS)" depend;\ + then cd ..; else exit 1; fi; done clean: for i in $(SUBDIR); do (cd $$i; $(MAKE) clean); done