Smallish adjustments.
authorSebastian Hammer <quinn@indexdata.com>
Sun, 25 Jun 1995 10:53:35 +0000 (10:53 +0000)
committerSebastian Hammer <quinn@indexdata.com>
Sun, 25 Jun 1995 10:53:35 +0000 (10:53 +0000)
CHANGELOG
Makefile
asn/Makefile
ccl/Makefile
comstack/Makefile
doc/Makefile
odr/Makefile
rfc1006/Makefile
server/Makefile
util/Makefile

index 63eec6a..2402a4c 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,7 +1,8 @@
-1.?????????
+--- 1.?????????
 Fixed handling of SUTRS records in the demonstration client.
 Fixed handling of SUTRS records in the demonstration client.
+
 Cosmetic changes to the documentation. It shouldn't be strictly necessary
 Cosmetic changes to the documentation. It shouldn't be strictly necessary
-  for you to print it all over again.
+for you to print it all over again.
 
 
-1.0b
-First widely announced release.
+--- 1.0b 1995/06/19
+First public release.
index 8c5647e..9070e10 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.18 1995-06-15 12:29:45 quinn Exp $
+# $Id: Makefile,v 1.19 1995-06-25 10:53:37 quinn Exp $
 
 # Uncomment the lines below to enable mOSI communcation.
 ODEFS=-DUSE_XTIMOSI
 
 # Uncomment the lines below to enable mOSI communcation.
 ODEFS=-DUSE_XTIMOSI
@@ -9,14 +9,17 @@ RFC1006=rfc1006
 LIBMOSI=../../xtimosi/src/libmosi.a ../lib/librfc.a
 XMOSI=xmosi.o
 
 LIBMOSI=../../xtimosi/src/libmosi.a ../lib/librfc.a
 XMOSI=xmosi.o
 
-DEFS=$(ODEFS)
+CDEFS=$(ODEFS)
 #CC=
 SHELL=/bin/sh
 MAKE=make
 SUBDIR=util odr asn $(RFC1006) ccl comstack client server makelib
 #CC=
 SHELL=/bin/sh
 MAKE=make
 SUBDIR=util odr asn $(RFC1006) ccl comstack client server makelib
+CONTROL=RANLIB="ranlib"
 
 all:
 
 all:
-       for i in $(SUBDIR); do cd $$i; if $(MAKE) CFLAGS="$(CFLAGS) $(DEFS)" LIBMOSI="$(LIBMOSI)" XMOSI="$(XMOSI)"; then cd ..; else exit 1; fi; done
+       for i in $(SUBDIR); do cd $$i; if $(MAKE) $(CONTROL)\
+       CFLAGS="$(CFLAGS) $(DEFS)" 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
 
 dep depend:
        for i in $(SUBDIR); do cd $$i; if $(MAKE) depend; then cd ..; else exit 1; fi; done
index 45b8768..783e5eb 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.14 1995-06-02 09:49:11 quinn Exp $
+# $Id: Makefile,v 1.15 1995-06-25 10:53:42 quinn Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
@@ -13,6 +13,7 @@ LIB=$(LIBDIR)/libasn.a
 LIBS=-lodr -lasn
 PO = proto.o diagbib1.o zget.o prt-rsc.o prt-acc.o
 CPP=$(CC) -E
 LIBS=-lodr -lasn
 PO = proto.o diagbib1.o zget.o prt-rsc.o prt-acc.o
 CPP=$(CC) -E
+RANLIB=ranlib
 
 all: $(LIB)
 
 
 all: $(LIB)
 
@@ -24,7 +25,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
index c0379d5..b5ba426 100644 (file)
@@ -2,7 +2,10 @@
 # Europagate, 1995
 #
 # $Log: Makefile,v $
 # Europagate, 1995
 #
 # $Log: Makefile,v $
-# Revision 1.3  1995-05-30 10:25:45  quinn
+# Revision 1.4  1995-06-25 10:53:43  quinn
+# Smallish adjustments.
+#
+# Revision 1.3  1995/05/30  10:25:45  quinn
 # Fixed dependency control
 #
 # Revision 1.2  1995/04/17  09:37:36  quinn
 # Fixed dependency control
 #
 # Revision 1.2  1995/04/17  09:37:36  quinn
@@ -40,6 +43,7 @@ LIB=../lib/ccl.a
 PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o
 CPP=$(CC) -E
 DEFS=$(INCLUDE)
 PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o
 CPP=$(CC) -E
 DEFS=$(INCLUDE)
+RANLIB=ranlib
 
 all: $(LIB)
 
 
 all: $(LIB)
 
@@ -49,7 +53,7 @@ $(TPROG1): $(TPROG1).o $(LIB)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
 
 .c.o:
        $(CC) -c $(DEFS) $(CFLAGS) $<
index 46f9770..de6db97 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.1 1995-06-14 09:58:19 quinn Exp $
+# $Id: Makefile,v 1.2 1995-06-25 10:53:44 quinn Exp $
 
 
 LIBDIR=../lib
 
 
 LIBDIR=../lib
@@ -21,6 +21,7 @@ LIBS=$(LIBDIR)/libasn.a $(LIBDIR)/libodr.a $(LIBDIR)/libcomstack.a \
 PO = comstack.o tcpip.o $(XMOSI)
 CPP=$(CC) -E
 #CC=checkergcc
 PO = comstack.o tcpip.o $(XMOSI)
 CPP=$(CC) -E
 #CC=checkergcc
+RANLIB=ranlib
 
 all: $(LIBDIR) $(LIB)
 
 
 all: $(LIBDIR) $(LIB)
 
@@ -32,7 +33,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
index 03003cc..24c7911 100644 (file)
@@ -5,7 +5,6 @@ SGMLT=sgml-tex
 all: yaz.ps yaz.txt
 
 yaz.txt: yaz.sgml
 all: yaz.ps yaz.txt
 
 yaz.txt: yaz.sgml
-       rm -f yaz.txt
        $(SGMLF) -Tnroff yaz.sgml | $(SGMLR) | sed -e 's/       /        /g' > yaz.txt
 
 yaz.ps: yaz.sgml
        $(SGMLF) -Tnroff yaz.sgml | $(SGMLR) | sed -e 's/       /        /g' > yaz.txt
 
 yaz.ps: yaz.sgml
index ef329cf..b9f5bca 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.21 1995-06-19 12:38:45 quinn Exp $
+# $Id: Makefile,v 1.22 1995-06-25 10:53:55 quinn Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
@@ -16,6 +16,7 @@ PO = odr_bool.o ber_bool.o ber_len.o ber_tag.o odr_util.o odr_null.o \
        odr_oct.o ber_oct.o odr_bit.o ber_bit.o odr_oid.o ber_oid.o odr_use.o \
        odr_choice.o odr_any.o ber_any.o odr.o odr_mem.o dumpber.o
 CPP=$(CC) -E
        odr_oct.o ber_oct.o odr_bit.o ber_bit.o odr_oid.o ber_oid.o odr_use.o \
        odr_choice.o odr_any.o ber_any.o odr.o odr_mem.o dumpber.o
 CPP=$(CC) -E
+RANLIB=ranlib
 
 all: $(LIBDIR) $(INCDIR) $(LIB)
 
 
 all: $(LIBDIR) $(INCDIR) $(LIB)
 
@@ -27,7 +28,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
index 53da691..214cc21 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.7 1995-06-16 10:31:18 quinn Exp $
+# $Id: Makefile,v 1.8 1995-06-25 10:53:56 quinn Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I. -I../../xtimosi/src
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I. -I../../xtimosi/src
@@ -13,6 +13,7 @@ LIB=$(LIBDIR)/librfc.a
 LIBS=-lodr
 PO = rfct.o makensap.o
 CPP=$(CC) -E
 LIBS=-lodr
 PO = rfct.o makensap.o
 CPP=$(CC) -E
+RANLIB=ranlib
 
 all: $(LIBDIR) $(INCDIR) $(LIB)
 
 
 all: $(LIBDIR) $(INCDIR) $(LIB)
 
@@ -24,7 +25,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
index e90ac81..09a3ac2 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.25 1995-05-30 10:25:46 quinn Exp $
+# $Id: Makefile,v 1.26 1995-06-25 10:53:57 quinn Exp $
 
 LIBDIR=../lib
 
 
 LIBDIR=../lib
 
@@ -19,6 +19,7 @@ PO = eventl.o seshigh.o statserv.o requestq.o
 CPP=$(CC) -E
 PROG=ztest
 PROGO=ztest.o
 CPP=$(CC) -E
 PROG=ztest
 PROGO=ztest.o
+RANLIB=ranlib
 
 all: $(LIBDIR) $(LIB) $(PROG)
 
 
 all: $(LIBDIR) $(LIB) $(PROG)
 
@@ -30,7 +31,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
index c98821a..6ed2b85 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.12 1995-05-30 10:25:47 quinn Exp $
+# $Id: Makefile,v 1.13 1995-06-25 10:53:59 quinn Exp $
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
 
 SHELL=/bin/sh
 INCLUDE=-I../include -I.
@@ -13,6 +13,7 @@ LIB=$(LIBDIR)/libutil.a
 LIBS=
 PO = options.o log.o marcdisp.o yaz-ccl.o pquery.o oid.o # dmalloc.o
 CPP=$(CC) -E
 LIBS=
 PO = options.o log.o marcdisp.o yaz-ccl.o pquery.o oid.o # dmalloc.o
 CPP=$(CC) -E
+RANLIB=ranlib
 
 all: $(LIBDIR) $(LIB) marcdump
 
 
 all: $(LIBDIR) $(LIB) marcdump
 
@@ -27,7 +28,7 @@ alll:
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
 $(LIB): $(PO)
        rm -f $(LIB)
        ar qc $(LIB) $(PO)
-       ranlib $(LIB)
+       $(RANLIB) $(LIB)
 
 $(LIBDIR):
        mkdir $(LIBDIR)
 
 $(LIBDIR):
        mkdir $(LIBDIR)