X-Git-Url: http://git.indexdata.com/?p=egate.git;a=blobdiff_plain;f=Makefile;h=968a20d7fd284c790202068a80fa30c5f437a99d;hp=11a3c94f2577cc7be8abc77193314db7206767ec;hb=HEAD;hpb=7b58e36bc4c5a57dec46408bbfb3707638dd967a diff --git a/Makefile b/Makefile index 11a3c94..968a20d 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,15 @@ # Top level Makefile for the Z39.50 gateway (Web and email) # Europagate, 1995-1996. # -# $Id: Makefile,v 1.34 1996/06/06 11:10:04 adam Exp $ +# $Id: Makefile,v 1.36 1996/08/05 10:27:58 adam Exp $ # SHELL=/bin/sh MAKE=make #CC=checkergcc CPP=$(CC) -E +VERSION=1.0 + # Email gateway settings -------------------------------------- # Directory for the email gateway files @@ -31,19 +33,19 @@ TCLLIB=/usr/local/lib/libtcl7.5.a -lm TCLINC=-I/usr/local/include # Location of IrTcl -IRTCLDIR=../ir-tcl +IRTCLDIR=../../ir-tcl IRTCLLIB=$(IRTCLDIR)/libirtcl.a IRTCLINC=-I$(IRTCLDIR) # Common settings --------------------------------------------- -# Other libraries libraries needed on some systems +# Other libraries needed on some systems #ELIB=-lnsl -lsocket # If you are using YAZ uncomment these lines ZACC=zlayer-yaz -ZINC=-I../yaz/include -ZLIB=../yaz/lib/libyaz.a +ZINC=-I../../yaz/include +ZLIB=../../yaz/lib/libyaz.a ZDEFS= # If you are using Zdist uncomment these lines @@ -120,5 +122,16 @@ gnudepend: sed 's/^depend: depend1/depend: depend2/g' >Makefile.tmp;then \ mv -f Makefile.tmp Makefile; fi); done -wc: - wc `find . -name '*.[ch]'` +distribution: + echo "Making distribution version $(VERSION). Did you commit?" + if [ -d tmp ]; then \ + rm -fr tmp; \ + fi + mkdir tmp; cd tmp; cvs export -f -D now egate + cd tmp/egate/www; rm *wais*.[ch] + cd tmp; mv egate egate-$(VERSION) + cd tmp/egate-$(VERSION); make taildepend + cd tmp/egate-$(VERSION)/doc; make all + cd tmp; tar zcf ../egate-$(VERSION).tar.gz egate-$(VERSION) + rm -fr tmp +