X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=www%2FMakefile;h=000302eda617634e7ce739ec54771a43797c89d2;hb=4938d0c2e8f4e1eec397c2bfbbc7e23fd150c369;hp=4420d24dc8845844b78e6eca72f0cd9bda390785;hpb=f37ddd57014f51c88ef36050ed08b4c6e226e094;p=egate.git diff --git a/www/Makefile b/www/Makefile index 4420d24..000302e 100644 --- a/www/Makefile +++ b/www/Makefile @@ -1,58 +1,137 @@ # Makefile for www gateway utility # Europagate, 1995 # -# $Log: Makefile,v $ -# 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.34 1996/03/07 12:46:07 adam Exp $ # SHELL=/bin/sh -INCLUDE=-I../include -#CFLAGS=-g -Wall -pedantic -ansi -OLIB=../lib/libres+log.a + +ZLIB=../../yaz/lib/libyaz.a + +IRTCLDIR=../../ir-tcl +IRTCLLIB=$(IRTCLDIR)/libirtcl.a +IRTCLINC=-I$(IRTCLDIR) + +#MOSILIB=../../xtimosi/src/libmosi.a ../../yaz/lib/librfc.a +#NETLIB=-lnsl -lsocket + +OLIB=../lib/util.a ../lib/libres+log.a TCLLIB=/usr/local/lib/libtcl7.5.a -WSCRIPTS=egwscript +TCLINC= + +WSCRIPTS=egwscript targets.egw query.egw search.egw showfull.egw z39util.tcl \ + mtargets.egw mquery.egw msearch.egw history.egw tform.egw tdefine.egw sameas.egw HSCRIPTS=egwindex.html +CONFFILES=egw.res ztargets.conf TPROG1=egwcgi TPROG2=egwsh TPROG3=wtest +TPROG4=egwwais P1=wcgi.o -P2=wproto.o winterp.o wsh.o wtcl.o whtml.o +P2=wproto.o winterp.o wsh.o wtcl.o whtml.o wirtcl.o wshmain.o P3=wproto.o wtest.o +P4=wproto.o winterp.o waissh.o wtcl.o wirtcl.o wshmain.o wwaistcl.o CPP=$(CC) -E -DEFS=$(INCLUDE) HTTPDDIR=/usr/local/etc/httpd -CGIBIN=$(HTTPDDIR)/cgi-bin +CGIDIR=$(HTTPDDIR)/cgi-bin HTDOCS=$(HTTPDDIR)/htdocs +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 $(TCLINC) $(IRTCLINC) +DEFS=$(INCLUDE) $(ZDEFS) -DEGWDIR=\"$(EGWDIR)\" all: $(TPROG1) $(TPROG2) -$(TPROG1): $(P1) +$(TPROG1): $(P1) $(OLIB) $(CC) $(CFLAGS) -o $(TPROG1) $(P1) $(OLIB) -$(TPROG2): $(P2) - $(CC) $(CFLAGS) -o $(TPROG2) $(P2) $(OLIB) $(TCLLIB) -lm +$(TPROG2): $(P2) $(OLIB) + $(CC) $(CFLAGS) -o $(TPROG2) $(P2) $(OLIB) $(IRTCLLIB) \ + $(ZLIB) $(MOSILIB) $(NETLIB) $(TCLLIB) -lm -$(TPROG3): $(P3) +$(TPROG3): $(P3) $(OLIB) $(CC) $(CFLAGS) -o $(TPROG3) $(P3) $(OLIB) -install: $(TPROG1) $(TPROG2) - @for x in $(TPROG1) $(TPROG2); do \ + +WAISDIR=../../freeWAIS-sf-2.0 +WAISLIB=$(IRTCLDIR)/wais-tcl.o $(WAISDIR)/ir/libwais.a + +$(TPROG4): $(P4) $(OLIB) + $(CC) $(CFLAGS) -o $(TPROG4) $(P4) \ + $(OLIB) $(IRTCLLIB) \ + $(WAISLIB) $(ZLIB) $(MOSILIB) $(NETLIB) $(TCLLIB) -lm + +install: install.prog install.script install.gif + +install.prog: $(TPROG1) $(TPROG2) + @if [ ! -d $(CGIDIR) ]; then \ + echo "Making directory $(CGIDIR)"; \ + mkdir $(CGIDIR); \ + fi + @if [ ! -d $(EGWDIR) ]; then \ + echo "Making directory $(EGWDIR)"; \ + mkdir $(EGWDIR); \ + fi + @for x in $(TPROG1); do \ + echo Installing $$x; \ + cp $$x $(CGIDIR); \ + chmod a+x $(CGIDIR)/$$x; \ + done; \ + for x in $(TPROG2); do \ echo Installing $$x; \ - cp $$x $(CGIBIN); \ - chmod +x $(CGIBIN)/$$x; \ + cp $$x $(EGWDIR); \ + chmod a+x $(EGWDIR)/$$x; \ + done; \ + for p in egwtcl egwirtcl egwhtml; do \ + rm -f $(EGWDIR)/$$p; \ + ln $(EGWDIR)/$(TPROG2) $(EGWDIR)/$$p; \ done + @if [ -x $(TPROG4) ]; then \ + echo Installing $(TPROG4); \ + cp $(TPROG4) $(EGWDIR)/$(TPROG4); \ + chmod a+x $(EGWDIR)/$(TPROG4); \ + fi + +install.script: + @if [ ! -d $(EGWDIR) ]; then \ + echo "Making directory $(EGWDIR)"; \ + mkdir $(EGWDIR); \ + fi + @if [ ! -d $(HTDOCS) ]; then \ + echo "Making directory $(HTDOCS)"; \ + mkdir $(HTDOCS); \ + 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; \ cp $$x $(HTDOCS); \ done + @for x in $(CONFFILES); do \ + echo Installing $$x; \ + 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); \ + done .c.o: $(CC) -c $(DEFS) $(CFLAGS) $<