From: Adam Dickmeiss Date: Fri, 8 Nov 1996 11:03:01 +0000 (+0000) Subject: More work. X-Git-Tag: YAZ.1.8~681 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=42dcb6fd4b9fccb404c4403e0d63c2bfb31cabbb More work. --- diff --git a/CHANGELOG b/CHANGELOG index 0ebd24b..77f398d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,9 @@ Possible compatibility problems with earlier versions marked with '*'. +In test client command "base" accepts multiple databases. + +Fixed bug in cs_close stack that caused trouble with WINSOCK. + --- 1.3 1996/10/11 Fixed tagging bug in ResourceReportResponse PDU encoder/decode. diff --git a/Makefile b/Makefile index 76b421e..2b29b86 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # Copyright (C) 1994, Index Data I/S # All rights reserved. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile,v 1.30 1996-10-07 15:28:56 quinn Exp $ +# $Id: Makefile,v 1.31 1996-11-08 11:03:02 adam Exp $ # Uncomment the lines below to enable mOSI communcation. #ODEFS=-DUSE_XTIMOSI @@ -39,6 +39,12 @@ 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`