1 # Makefile for www gateway utility
5 # Revision 1.18 1995/12/20 16:31:30 adam
6 # Bug fix: shell might terminate even though new request was initiated
7 # by the cgi interface program.
8 # Work on more simple user interface and Europagate buttons.
10 # Revision 1.17 1995/11/14 16:31:35 adam
11 # Temporary remove of ccl entry.
13 # Revision 1.16 1995/11/14 16:01:50 adam
14 # Bug fix: didn't use correct database(s) when 'all' checkbox was selected.
16 # Revision 1.15 1995/11/13 18:17:46 adam
17 # Better error handling.
19 # Revision 1.14 1995/11/13 15:41:40 adam
21 # Gateway uses record element set names B(rief) and F(ull).
22 # Bug fix. Didn't save idAuthentication correctly.
24 # Revision 1.13 1995/11/08 18:07:22 adam
27 # Revision 1.12 1995/11/08 16:14:32 adam
28 # Many improvements and bug fixes.
29 # First version that ran on dtbsun.
31 # Revision 1.11 1995/11/07 14:56:58 adam
32 # Work on search in multiple targets.
33 # New wtcl command: wlog.
34 # Optional timeout parameter to zwait.
36 # Revision 1.10 1995/11/07 10:44:29 adam
37 # Work on search in multiple targets.
39 # Revision 1.9 1995/11/06 17:44:20 adam
40 # State reestablised when shell restarts. History of previous
43 # Revision 1.8 1995/11/06 10:51:14 adam
44 # End of response marker in response from wsh/wproto to wcgi.
45 # Shells are respawned when necessary.
47 # Revision 1.7 1995/10/31 16:56:23 adam
48 # Record presentation.
50 # Revision 1.6 1995/10/27 17:30:15 adam
51 # First search request/response that works.
53 # Revision 1.5 1995/10/27 15:12:02 adam
54 # IrTcl incorporated in the gateway.
55 # Better separation of script types.
56 # Z39.50 gateway scripts entered.
58 # Revision 1.4 1995/10/23 17:04:16 adam
59 # Added some initial z39 gateway scripts.
61 # Revision 1.3 1995/10/23 16:55:33 adam
62 # A lot of changes - really.
64 # Revision 1.2 1995/10/20 14:02:40 adam
65 # First version of WWW gateway with embedded Tcl.
67 # Revision 1.1 1995/10/20 11:49:24 adam
68 # First version of www gateway.
73 ZINC=-I../../yaz/include
74 ZLIB=../../yaz/lib/libyaz.a
75 MOSILIB=../../xtimosi/src/libmosi.a ../../yaz/lib/librfc.a
76 LIBIRTCL=/usr/local/lib/libirtcl.a $(ZLIB) $(MOSILIB)
77 #NETLIB=-lnsl -lsocket
79 OLIB=../lib/util.a ../lib/libres+log.a
80 TCLLIB=/usr/local/lib/libtcl7.4.a
82 WSCRIPTS=egwscript targets.egw query.egw search.egw showfull.egw z39util.tcl \
83 mtargets.egw mquery.egw msearch.egw
84 HSCRIPTS=egwindex.html
85 CONFFILES=ztargets.conf
90 P2=wproto.o winterp.o wsh.o wtcl.o whtml.o wirtcl.o
94 INCLUDE=-I../include $(ZINC)
95 DEFS=$(INCLUDE) $(ZDEFS)
97 HTTPDDIR=/usr/local/etc/httpd
98 CGIBIN=$(HTTPDDIR)/cgi-bin
99 HTDOCS=$(HTTPDDIR)/htdocs
100 CONFDIR=$(HTTPDDIR)/conf
103 all: $(TPROG1) $(TPROG2)
106 $(CC) $(CFLAGS) -o $(TPROG1) $(P1) $(OLIB)
109 $(CC) $(CFLAGS) -o $(TPROG2) $(P2) $(OLIB) $(LIBIRTCL) \
110 $(NETLIB) $(TCLLIB) -lm
113 $(CC) $(CFLAGS) -o $(TPROG3) $(P3) $(OLIB)
115 install: install.prog install.script
117 install.prog: $(TPROG1) $(TPROG2)
118 @for x in $(TPROG1) $(TPROG2); do \
119 echo Installing $$x; \
121 chmod +x $(CGIBIN)/$$x; \
123 for p in egwtcl egwirtcl egwhtml; do \
124 rm -f $(CGIBIN)/$$p; \
125 ln $(CGIBIN)/$(TPROG2) $(CGIBIN)/$$p; \
129 @for x in $(WSCRIPTS); do \
130 echo Installing $$x; \
133 @for x in $(HSCRIPTS); do \
134 echo Installing $$x; \
137 @for x in $(CONFFILES); do \
138 echo Installing $$x; \
141 @for x in gif/*.gif; do \
142 echo Installing $$x; \
147 $(CC) -c $(DEFS) $(CFLAGS) $<
150 rm -f *.log *.[oa] $(TPROG1) $(TPROG2) $(TPROG3)
151 rm -f core mon.out gmon.out errlist *~
156 sed '/^#Depend/q' <Makefile >Makefile.tmp
157 $(CPP) $(DEFS) -M *.c >>Makefile.tmp
158 mv -f Makefile.tmp Makefile
161 $(CPP) $(DEFS) -M *.c >.depend
163 #GNU make style depend
164 ifeq (.depend,$(wildcard .depend))
168 #Depend --- DOT NOT DELETE THIS LINE