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