v2+
[yaz-moved-to-github.git] / Makefile
index 9e68963..30368c3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,21 +1,39 @@
-# Copyright (C) 1994, Index Data I/S 
+# Copyright (C) 1995-1998, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.28 1995-12-06 16:06:20 quinn Exp $
+# $Id: Makefile,v 1.40 1998-06-02 10:23:07 adam Exp $
 
 # Uncomment the lines below to enable mOSI communcation.
-ODEFS=-DUSE_XTIMOSI
-RFC1006=rfc1006
-LIBMOSI=../../xtimosi/src/libmosi.a ../lib/librfc.a
-XMOSI=xmosi.o
+#ODEFS=-DUSE_XTIMOSI
+#RFC1006=rfc1006
+#LIBMOSI=../../xtimosi/src/libmosi.a ../lib/librfc.a
+#XMOSI=xmosi.o
+
+CDEFS=$(ODEFS) 
+
+# Standard include path and original protocol encoders.
+INCLUDE=-I. -I../include
+MOD=asn
+
+# Uncomment the two lines below if you want to try the ASN.1 compiler
+# (yc) for YAZ. Download yc separately and untar it along with YAZ:
+#  gunzip -c yaz.tar.gz | tar xvf -
+#  gunzip -c yc.tar.gz | tar xvf -
+#  cd yaz
+#  ln -s ../yc/z39.50 
+# You must run 'make depend' before 'make'.
+#INCLUDE=-I../z39.50 -I. -I../include
+#MOD=z39.50
 
-CDEFS=$(ODEFS)
 #CC=
 SHELL=/bin/sh
 MAKE=make
-SUBDIR=util odr asn $(RFC1006) ccl comstack retrieval client server makelib
+SUBDIR=$(MOD) util odr $(RFC1006) ccl comstack retrieval client server ztest makelib
 # Add external libraries to the ELIBS macro
 ELIBS=
+# For Solaris use:
+#ELIBS=-lnsl -lsocket
+
 CONTROL=RANLIB="ranlib" ELIBS="$(ELIBS)"
 
 # Installation directories, etc.
@@ -28,17 +46,24 @@ INCDIR=/usr/local/include
 YAZDIR=/usr/local/lib/yaz
 
 all:
-       for i in $(SUBDIR); do cd $$i; if $(MAKE) $(CONTROL)\
-       CFLAGS="$(CFLAGS) $(CDEFS)" LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)";\
+       for i in $(SUBDIR); do cd $$i; if $(MAKE) $(CONTROL) \
+       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
        -rm lib/*.a
 
+oclean:
+       for i in $(SUBDIR); do (cd $$i; rm -f *.o); done
+       mv lib/libyaz.a .; rm -f lib/*.a; mv libyaz.a lib
+       cd client; strip client
+       cd server; strip ztest
+
 cleanup:
        rm -f `find $(SUBDIR) -name "*.[oa]" -print`
        rm -f `find $(SUBDIR) -name "core" -print`
@@ -116,4 +141,4 @@ install.misc:
 
 wc:
        wc `find . -name '*.[ch]'`
-       
+