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