Bug fix in persist.c: Double referenced result-sets weren't recovered.
[egate.git] / kernel / Makefile
1 # Makefile for Email gateway CCL
2 # Europagate, 1995
3 #
4 # $Log: Makefile,v $
5 # Revision 1.27  1995/07/05 10:20:06  adam
6 # Z definitions duplicated from ../Makefile.
7 #
8 # Revision 1.26  1995/07/03  08:20:12  adam
9 # More help information and better diagnostics.
10 #
11 # Revision 1.25  1995/05/19  13:25:58  adam
12 # Bug fixes. Better command line options.
13 #
14 # Revision 1.24  1995/05/03  12:18:46  adam
15 # This code ran on dtbsun. Minor changes.
16 #
17 # Revision 1.23  1995/05/03  07:37:29  adam
18 # CCL commands stop/continue implemented. New functions gw_res_{int,bool}
19 # are used when possible.
20 #
21 # Revision 1.22  1995/05/01  12:43:26  adam
22 # First work on resource monitor program.
23 #
24 # Revision 1.21  1995/04/20  16:10:45  adam
25 # Modified to work with non-blocking zass-api. Not using non-blocking
26 # facility yet.
27 #
28 # Revision 1.20  1995/04/20  15:24:59  quinn
29 # *** empty log message ***
30 #
31 # Revision 1.19  1995/04/19  16:08:20  adam
32 # Minor changes.
33 #
34 # Revision 1.18  1995/04/19  16:01:57  adam
35 # Some hacks to get the FIFO communication work!! Isn't reliable.
36 # Resource gw.account added - default account info.
37 #
38 # Revision 1.17  1995/04/19  10:46:17  adam
39 # Persistency works much better now. New command: status - history-like
40 #
41 # Revision 1.16  1995/04/19  07:30:56  adam
42 # First work on Z39.50 persistence.
43 #
44 # Revision 1.15  1995/04/17  11:27:29  quinn
45 # Smallish
46 #
47 # Revision 1.14  1995/04/17  09:34:23  adam
48 # Timeout (idletime) adjustable. Minor changes in kernel.
49 #
50 # Revision 1.13  1995/03/27  12:51:04  adam
51 # New log level in use: GW_LOG_ERRNO.
52 #
53 # Revision 1.12  1995/03/27  08:23:57  adam
54 # First use of gip interface and gw-db.
55 # First work on eti program.
56 #
57 # Revision 1.11  1995/03/03  17:19:09  adam
58 # Smarter presentation. Bug fix in email header interpretation.
59 #
60 # Revision 1.10  1995/03/01  14:32:24  adam
61 # Better diagnostics. Default is, that only one database selected when
62 # several are known.
63 #
64 # Revision 1.9  1995/02/23  08:32:14  adam
65 # Changed header.
66 #
67 # Revision 1.7  1995/02/22  08:51:34  adam
68 # Output function can be customized in fml, which is used to print
69 # the reply to reply_fd.
70 #
71 # Revision 1.6  1995/02/21  14:00:08  adam
72 # Minor changes.
73 #
74 # Revision 1.5  1995/02/21  12:11:59  adam
75 # Diagnostic record with error info. observed.
76 #
77 # Revision 1.4  1995/02/20  21:16:16  adam
78 # FML support. Bug fixes. Profile for drewdb.
79 #
80 # Revision 1.3  1995/02/17  09:08:35  adam
81 # Reply with subject. CCL base command implemented.
82 #
83 # Revision 1.2  1995/02/16  18:35:07  adam
84 # First use of Zdist library. Search requests are supported.
85 # Present requests are not supported yet.
86 #
87 # Revision 1.1  1995/02/15  17:45:29  adam
88 # First version of email gateway kernel. Email requests are read
89 # from stdin. The output is transferred to an MTA if 'From' is
90 # found in the header - or stdout if absent. No Z39.50 client is used.
91 #
92 #
93 SHELL=/bin/sh
94
95 ZINC=-I../../yaz/include
96 ZLIB=../../yaz/lib/libyaz.a
97 ZDEFS=
98
99 INCLUDE=-I../include
100 #CFLAGS=-g -Wall 
101 CPP=$(CC) -E
102 DEFS=$(INCLUDE) -DUSE_FML=1
103
104 PROG1=kernel
105 O1=main.o urp.o persist.o
106 USELIBS1=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \
107 ../lib/util.a $(ZLIB) $(REGEXOBJ)
108
109 PROG2=eti
110 O2=eti.o
111 USELIBS2=../lib/libres+log.a ../lib/util.a 
112
113 PROG3=monitor
114 O3=monitor.o
115 USELIBS3=../lib/libres+log.a ../lib/util.a 
116
117 all: $(PROG1) $(PROG2) $(PROG3)
118
119 $(PROG1): $(O1) $(USELIBS1)
120         $(CC) $(CFLAGS) -o $(PROG1) $(O1) $(USELIBS1) $(NETLIB)
121
122 $(PROG2): $(O2) $(USELIBS2)
123         $(CC) $(CFLAGS) -o $(PROG2) $(O2) $(USELIBS2) $(NETLIB)
124
125 $(PROG3): $(O3) $(USELIBS3)
126         $(CC) $(CFLAGS) -o $(PROG3) $(O3) $(USELIBS3) $(NETLIB)
127
128 .c.o:
129         $(CC) -c $(DEFS) $(CFLAGS) $<
130
131 clean:
132         rm -f *.log *.[oa] $(PROG1) $(PROG2) $(PROG3)
133         rm -f core mon.out gmon.out errlist *~ fifo.*
134
135 depend: depend2
136
137 depend1:
138         sed '/^#Depend/q' <Makefile >Makefile.tmp
139         $(CPP) $(DEFS) -M *.c >>Makefile.tmp
140         mv -f Makefile.tmp Makefile
141
142 depend2:
143         $(CPP) $(DEFS) -M *.c >.depend  
144
145 #GNU make style depend
146 ifeq (.depend,$(wildcard .depend))
147 include .depend
148 endif
149
150 #Depend --- DOT NOT DELETE THIS LINE