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