FML support. Bug fixes. Profile for drewdb.
[egate.git] / kernel / Makefile
1 # Makefile for Email gateway CCL
2 # Europagate, 1995
3 #
4 # $Log: Makefile,v $
5 # Revision 1.4  1995/02/20 21:16:16  adam
6 # FML support. Bug fixes. Profile for drewdb.
7 #
8 # Revision 1.3  1995/02/17  09:08:35  adam
9 # Reply with subject. CCL base command implemented.
10 #
11 # Revision 1.2  1995/02/16  18:35:07  adam
12 # First use of Zdist library. Search requests are supported.
13 # Present requests are not supported yet.
14 #
15 # Revision 1.1  1995/02/15  17:45:29  adam
16 # First version of email gateway kernel. Email requests are read
17 # from stdin. The output is transferred to an MTA if 'From' is
18 # found in the header - or stdout if absent. No Z39.50 client is used.
19 #
20 #
21 SHELL=/bin/sh
22 INCLUDE=-I../include
23 CFLAGS=-g -Wall 
24 #CC=gcc
25 TPROG1=kernel
26 O=main.o urp.o
27 CPP=cc -E
28 USELIBS1=../lib/ccl.a ../lib/fml.a ../lib/libzass.a ../lib/libres+log.a \
29 ../lib/util.a /home/proj/zdist/zdist102b1-1/libz3950/libz3950.a
30 DEFS=$(INCLUDE) -DUSE_FML=1
31
32 all: $(TPROG1)
33
34 $(TPROG1): $(O) $(USELIBS1)
35         $(CC) $(CFLAGS) -o $(TPROG1) $(O) $(USELIBS1)
36
37 .c.o:
38         $(CC) -c $(DEFS) $(CFLAGS) $<
39
40 clean:
41         rm -f *.log *.[oa] $(TPROG1) $(TPROG2) core mon.out gmon.out errlist *~
42
43 depend: depend2
44
45 depend1:
46         mv Makefile Makefile.tmp
47         sed '/^#Depend/q' <Makefile.tmp >Makefile
48         $(CPP) $(INCLUDE) -M *.c >>Makefile
49         -rm Makefile.tmp
50
51 depend2:
52         $(CPP) $(INCLUDE) -M *.c >.depend       
53
54 ifeq (.depend,$(wildcard .depend))
55 include .depend
56 endif
57
58 #Depend --- DOT NOT DELETE THIS LINE