X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ccl%2FMakefile;h=6ffb4f60d03af94294813a3a4a4ebe9a08ff2f81;hb=8f7995bdfe85beb2ff6fa08e99bb05242f3bf71f;hp=f25d7d9cbfbc583a38f8c95044c087d32ef30c61;hpb=549074d1394b37eb04b612c0f2f16fe1361d6243;p=yaz-moved-to-github.git diff --git a/ccl/Makefile b/ccl/Makefile index f25d7d9..6ffb4f6 100644 --- a/ccl/Makefile +++ b/ccl/Makefile @@ -2,11 +2,28 @@ # Europagate, 1995 # # $Log: Makefile,v $ -# Revision 1.2 1995-04-17 09:37:36 quinn -# *** empty log message *** +# Revision 1.8 1997-09-17 12:10:28 adam +# YAZ version 1.4. # -# Revision 1.1 1995/04/10 10:28:16 quinn -# Added copy of CCL. +# Revision 1.7 1997/04/30 08:52:05 quinn +# Null +# +# Revision 1.6 1996/10/11 15:00:24 adam +# CCL parser from Europagate Email gateway 1.0. +# +# Revision 1.12 1996/05/22 08:37:13 adam +# Removed CFLAGS definition. +# +# Revision 1.11 1995/11/10 10:19:10 adam +# cclsh now build on 'make all'. +# +# Revision 1.10 1995/05/11 14:03:56 adam +# Changes in the reading of qualifier(s). New function: ccl_qual_fitem. +# New variable ccl_case_sensitive, which controls whether reserved +# words and field names are case sensitive or not. +# +# Revision 1.9 1995/04/17 09:31:34 adam +# Improved handling of qualifiers. Aliases or reserved words. # # Revision 1.8 1995/04/10 10:22:35 quinn # Added ccl directory. @@ -31,12 +48,11 @@ # SHELL=/bin/sh INCLUDE=-I../include -#CFLAGS=-g -Wall -pedantic -ansi TPROG1=cclsh LIB=../lib/ccl.a -PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o +PO=cclfind.o ccltoken.o cclerrms.o cclqual.o cclptree.o cclqfile.o cclstr.o CPP=$(CC) -E -DEFS=$(INCLUDE) +DEFS=$(INCLUDE) $(CDEFS) all: $(LIB) @@ -57,14 +73,14 @@ clean: depend: depend2 depend1: - mv Makefile Makefile.tmp - sed '/^#Depend/q' Makefile - $(CPP) $(INCLUDE) -M *.c >>Makefile - -rm Makefile.tmp + sed '/^#Depend/q' Makefile.tmp + $(CPP) $(DEFS) -M *.c >>Makefile.tmp + mv -f Makefile.tmp Makefile depend2: - $(CPP) $(INCLUDE) -M *.c >.depend + $(CPP) $(DEFS) -M *.c >.depend +#GNU make style depend ifeq (.depend,$(wildcard .depend)) include .depend endif