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