X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ccl%2FMakefile;h=ecdefc8503057b7904707aaa21f534c402d5542d;hb=180d06f2b91d0197c8ac7548f0e90f91b8427068;hp=f25d7d9cbfbc583a38f8c95044c087d32ef30c61;hpb=549074d1394b37eb04b612c0f2f16fe1361d6243;p=yaz-moved-to-github.git diff --git a/ccl/Makefile b/ccl/Makefile index f25d7d9..ecdefc8 100644 --- a/ccl/Makefile +++ b/ccl/Makefile @@ -2,7 +2,16 @@ # Europagate, 1995 # # $Log: Makefile,v $ -# Revision 1.2 1995-04-17 09:37:36 quinn +# Revision 1.5 1996-05-22 08:35:40 adam +# Removed CFLAGS definiton. +# +# Revision 1.4 1995/06/25 10:53:43 quinn +# Smallish adjustments. +# +# Revision 1.3 1995/05/30 10:25:45 quinn +# Fixed dependency control +# +# Revision 1.2 1995/04/17 09:37:36 quinn # *** empty log message *** # # Revision 1.1 1995/04/10 10:28:16 quinn @@ -31,12 +40,12 @@ # 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 CPP=$(CC) -E DEFS=$(INCLUDE) +RANLIB=ranlib all: $(LIB) @@ -46,7 +55,7 @@ $(TPROG1): $(TPROG1).o $(LIB) $(LIB): $(PO) rm -f $(LIB) ar qc $(LIB) $(PO) - ranlib $(LIB) + $(RANLIB) $(LIB) .c.o: $(CC) -c $(DEFS) $(CFLAGS) $< @@ -57,10 +66,6 @@ clean: depend: depend2 depend1: - mv Makefile Makefile.tmp - sed '/^#Depend/q' Makefile - $(CPP) $(INCLUDE) -M *.c >>Makefile - -rm Makefile.tmp depend2: $(CPP) $(INCLUDE) -M *.c >.depend