X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2FMakefile;h=0fecbb5a2f0e17a78b58c2e6f6ad0013f4009423;hb=cf6ead410b63297e714d9258f9ea593b1e127501;hp=7b2a2b5e7f52c8824911c3d2b6858fed620855d3;hpb=ba37ce207c47ac1fa27bb46df7dc54f72740bb96;p=egate.git diff --git a/www/Makefile b/www/Makefile index 7b2a2b5..0fecbb5 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,94 +1,23 @@ # Makefile for www gateway utility # Europagate, 1995 # -# $Log: Makefile,v $ -# Revision 1.20 1996/01/03 15:19:35 adam -# Improved history. -# Better working scan. -# New maintanance function to print contact info, etc. -# -# Revision 1.19 1996/01/02 10:52:25 adam -# In images Alt=... are defined. -# -# Revision 1.18 1995/12/20 16:31:30 adam -# Bug fix: shell might terminate even though new request was initiated -# by the cgi interface program. -# Work on more simple user interface and Europagate buttons. -# -# Revision 1.17 1995/11/14 16:31:35 adam -# Temporary remove of ccl entry. -# -# Revision 1.16 1995/11/14 16:01:50 adam -# Bug fix: didn't use correct database(s) when 'all' checkbox was selected. -# -# Revision 1.15 1995/11/13 18:17:46 adam -# Better error handling. -# -# Revision 1.14 1995/11/13 15:41:40 adam -# Arrow gifs. -# Gateway uses record element set names B(rief) and F(ull). -# Bug fix. Didn't save idAuthentication correctly. -# -# Revision 1.13 1995/11/08 18:07:22 adam -# Minor changes. -# -# Revision 1.12 1995/11/08 16:14:32 adam -# Many improvements and bug fixes. -# First version that ran on dtbsun. -# -# Revision 1.11 1995/11/07 14:56:58 adam -# Work on search in multiple targets. -# New wtcl command: wlog. -# Optional timeout parameter to zwait. -# -# Revision 1.10 1995/11/07 10:44:29 adam -# Work on search in multiple targets. -# -# Revision 1.9 1995/11/06 17:44:20 adam -# State reestablised when shell restarts. History of previous -# result sets. -# -# Revision 1.8 1995/11/06 10:51:14 adam -# End of response marker in response from wsh/wproto to wcgi. -# Shells are respawned when necessary. -# -# Revision 1.7 1995/10/31 16:56:23 adam -# Record presentation. -# -# Revision 1.6 1995/10/27 17:30:15 adam -# First search request/response that works. -# -# Revision 1.5 1995/10/27 15:12:02 adam -# IrTcl incorporated in the gateway. -# Better separation of script types. -# Z39.50 gateway scripts entered. -# -# Revision 1.4 1995/10/23 17:04:16 adam -# Added some initial z39 gateway scripts. -# -# Revision 1.3 1995/10/23 16:55:33 adam -# A lot of changes - really. -# -# Revision 1.2 1995/10/20 14:02:40 adam -# First version of WWW gateway with embedded Tcl. -# -# Revision 1.1 1995/10/20 11:49:24 adam -# First version of www gateway. +# $Id: Makefile,v 1.27 1996/01/26 15:50:06 adam Exp $ # SHELL=/bin/sh # ZDEFS= -#ZINC=-I../../yaz/include -ZLIB=-lyaz +ZINC=-I../../yaz/include +ZLIB=../../yaz/lib/libyaz.a MOSILIB=../../xtimosi/src/libmosi.a -lrfc -LIBIRTCL=/usr/local/lib/libirtcl.a $(ZLIB) $(MOSILIB) +LIBIRTCL=../../ir-tcl/libirtcl.a $(ZLIB) $(MOSILIB) #NETLIB=-lnsl -lsocket # OLIB=../lib/util.a ../lib/libres+log.a TCLLIB=/usr/local/lib/libtcl7.4.a +TCLINC=-I/usr/local/include # WSCRIPTS=egwscript targets.egw query.egw search.egw showfull.egw z39util.tcl \ - mtargets.egw mquery.egw msearch.egw history.egw + mtargets.egw mquery.egw msearch.egw history.egw tform.egw tdefine.egw HSCRIPTS=egwindex.html CONFFILES=ztargets.conf TPROG1=egwcgi @@ -98,45 +27,58 @@ P1=wcgi.o P2=wproto.o winterp.o wsh.o wtcl.o whtml.o wirtcl.o P3=wproto.o wtest.o CPP=$(CC) -E -# -INCLUDE=-I../include $(ZINC) -DEFS=$(INCLUDE) $(ZDEFS) HTTPDDIR=/usr/local/etc/httpd -CGIBIN=$(HTTPDDIR)/cgi-bin +CGIDIR=$(HTTPDDIR)/cgi-bin HTDOCS=$(HTTPDDIR)/htdocs -CONFDIR=$(HTTPDDIR)/conf -GIFDIR=$(HTDOCS)/gif +EGWDIR=$(HTTPDDIR)/egw +LOGDIR=$(HTTPDDIR)/logs +GIFDIR=$(HTDOCS)/egwgif + +#HTTPDDIR=/usr/local/www +#CGIDIR=/usr/local/www/cgi-bin +#HTDOCS=/data2/html/egw/html +#EGWDIR=/data2/html/egw/scripts +#LOGDIR=/data2/html/egw/logs +#GIFDIR=/data2/html/egw/gif + +INCLUDE=-I../include $(ZINC) $(TCLINC) +DEFS=$(INCLUDE) $(ZDEFS) -DCGIDIR=\"$(CGIDIR)\" -DEGWDIR=\"$(EGWDIR)\" \ + -DLOGDIR=\"$(LOGDIR)\" all: $(TPROG1) $(TPROG2) -$(TPROG1): $(P1) - $(CC) $(CFLAGS) -o $(TPROG1) $(P1) $(OLIB) +$(TPROG1): $(P1) $(OLIB) + $(CC) $(CFLAGS) -o $(TPROG1) $(P1) $(OLIB) $(ZLIB) -$(TPROG2): $(P2) +$(TPROG2): $(P2) $(OLIB) $(CC) $(CFLAGS) -o $(TPROG2) $(P2) $(OLIB) $(LIBIRTCL) \ $(NETLIB) $(TCLLIB) -lm -$(TPROG3): $(P3) - $(CC) $(CFLAGS) -o $(TPROG3) $(P3) $(OLIB) +$(TPROG3): $(P3) $(OLIB) + $(CC) $(CFLAGS) -o $(TPROG3) $(P3) $(OLIB) $(ZLIB) -install: install.prog install.script +install: install.prog install.script install.gif install.prog: $(TPROG1) $(TPROG2) @for x in $(TPROG1) $(TPROG2); do \ echo Installing $$x; \ - cp $$x $(CGIBIN); \ - chmod +x $(CGIBIN)/$$x; \ + cp $$x $(CGIDIR); \ + chmod a+x $(CGIDIR)/$$x; \ done; \ for p in egwtcl egwirtcl egwhtml; do \ - rm -f $(CGIBIN)/$$p; \ - ln $(CGIBIN)/$(TPROG2) $(CGIBIN)/$$p; \ + rm -f $(CGIDIR)/$$p; \ + ln $(CGIDIR)/$(TPROG2) $(CGIDIR)/$$p; \ done install.script: + @if [ ! -d $(EGWDIR) ]; then \ + echo "Making directory $(EGWDIR)"; \ + mkdir $(EGWDIR); \ + fi @for x in $(WSCRIPTS); do \ echo Installing $$x; \ - cp $$x $(CGIBIN); \ + cp $$x $(EGWDIR)/$$x; \ done @for x in $(HSCRIPTS); do \ echo Installing $$x; \ @@ -144,8 +86,14 @@ install.script: done @for x in $(CONFFILES); do \ echo Installing $$x; \ - cp $$x $(CONFDIR); \ + cp $$x $(EGWDIR); \ done + +install.gif: + @if [ ! -d $(GIFDIR) ]; then \ + echo "Making directory $(GIFDIR)"; \ + mkdir $(GIFDIR); \ + fi @for x in gif/*.gif; do \ echo Installing $$x; \ cp $$x $(GIFDIR); \