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