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