CCL parser from Europagate Email gateway 1.0.
[yaz-moved-to-github.git] / ccl / Makefile
1 # Makefile for Email gateway CCL
2 # Europagate, 1995
3 #
4 # $Log: Makefile,v $
5 # Revision 1.6  1996-10-11 15:00:24  adam
6 # CCL parser from Europagate Email gateway 1.0.
7 #
8 # Revision 1.12  1996/05/22  08:37:13  adam
9 # Removed CFLAGS definition.
10 #
11 # Revision 1.11  1995/11/10 10:19:10  adam
12 # cclsh now build on 'make all'.
13 #
14 # Revision 1.10  1995/05/11  14:03:56  adam
15 # Changes in the reading of qualifier(s). New function: ccl_qual_fitem.
16 # New variable ccl_case_sensitive, which controls whether reserved
17 # words and field names are case sensitive or not.
18 #
19 # Revision 1.9  1995/04/17  09:31:34  adam
20 # Improved handling of qualifiers. Aliases or reserved words.
21 #
22 # Revision 1.8  1995/04/10  10:22:35  quinn
23 # Added ccl directory.
24 #
25 # Revision 1.7  1995/03/27  12:49:03  adam
26 # Removed CFLAGS def.
27 #
28 # Revision 1.6  1995/02/23  08:31:58  adam
29 # Changed header.
30 #
31 # Revision 1.4  1995/02/22  08:50:28  adam
32 # Definition of CPP changed.
33 #
34 # Revision 1.3  1995/02/14  10:25:55  adam
35 # The constructions 'qualifier rel term ...' implemented.
36 #
37 # Revision 1.2  1995/02/13  15:15:06  adam
38 # Added handling of qualifiers. Not finished yet.
39 #
40 # Revision 1.1  1995/02/13  12:35:20  adam
41 # First version of CCL. Qualifiers aren't handled yet.
42 #
43 SHELL=/bin/sh
44 INCLUDE=-I../include
45 TPROG1=cclsh
46 LIB=../lib/ccl.a
47 PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o cclqfile.o cclstr.o
48 CPP=$(CC) -E
49 DEFS=$(INCLUDE)
50
51 all: $(LIB)
52
53 $(TPROG1): $(TPROG1).o $(LIB)
54         $(CC) $(CFLAGS) -o $(TPROG1) $(TPROG1).o $(LIB)
55
56 $(LIB): $(PO)
57         rm -f $(LIB)
58         ar qc $(LIB) $(PO)
59         ranlib $(LIB)
60
61 .c.o:
62         $(CC) -c $(DEFS) $(CFLAGS) $<
63
64 clean:
65         rm -f *.log *.[oa] $(TPROG1) $(TPROG2) core mon.out gmon.out errlist *~
66
67 depend: depend2
68
69 depend1:
70         sed '/^#Depend/q' <Makefile >Makefile.tmp
71         $(CPP) $(DEFS) -M *.c >>Makefile.tmp
72         mv -f Makefile.tmp Makefile
73
74 depend2:
75         $(CPP) $(DEFS) -M *.c >.depend  
76
77 #GNU make style depend
78 ifeq (.depend,$(wildcard .depend))
79 include .depend
80 endif
81
82 #Depend --- DOT NOT DELETE THIS LINE