Changed header.
[egate.git] / ccl / Makefile
1 # Makefile for Email gateway CCL
2 # Europagate, 1995
3 #
4 # $Log: Makefile,v $
5 # Revision 1.6  1995/02/23 08:31:58  adam
6 # Changed header.
7 #
8 # Revision 1.4  1995/02/22  08:50:28  adam
9 # Definition of CPP changed.
10 #
11 # Revision 1.3  1995/02/14  10:25:55  adam
12 # The constructions 'qualifier rel term ...' implemented.
13 #
14 # Revision 1.2  1995/02/13  15:15:06  adam
15 # Added handling of qualifiers. Not finished yet.
16 #
17 # Revision 1.1  1995/02/13  12:35:20  adam
18 # First version of CCL. Qualifiers aren't handled yet.
19 #
20 SHELL=/bin/sh
21 INCLUDE=-I../include
22 CFLAGS=-g -Wall -pedantic -ansi
23 TPROG1=cclsh
24 LIB=../lib/ccl.a
25 PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o
26 CPP=$(CC) -E
27 DEFS=$(INCLUDE)
28
29 all: $(TPROG1)
30
31 $(TPROG1): $(TPROG1).o $(LIB) ../lib/util.a
32         $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB) ../lib/util.a
33
34 $(LIB): $(PO)
35         rm -f $(LIB)
36         ar qc $(LIB) $(PO)
37         ranlib $(LIB)
38
39 .c.o:
40         $(CC) -c $(DEFS) $(CFLAGS) $<
41
42 clean:
43         rm -f *.log *.[oa] $(TPROG1) $(TPROG2) core mon.out gmon.out errlist *~
44
45 depend: depend2
46
47 depend1:
48         mv Makefile Makefile.tmp
49         sed '/^#Depend/q' <Makefile.tmp >Makefile
50         $(CPP) $(INCLUDE) -M *.c >>Makefile
51         -rm Makefile.tmp
52
53 depend2:
54         $(CPP) $(INCLUDE) -M *.c >.depend       
55
56 ifeq (.depend,$(wildcard .depend))
57 include .depend
58 endif
59
60 #Depend --- DOT NOT DELETE THIS LINE