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