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