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