X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=ccl%2FMakefile;h=b5ba4260a750340071e4c1a4120503844a46a036;hb=3daec0c0ae02f6dffeb98fec83913c50de670510;hp=f25d7d9cbfbc583a38f8c95044c087d32ef30c61;hpb=549074d1394b37eb04b612c0f2f16fe1361d6243;p=yaz-moved-to-github.git diff --git a/ccl/Makefile b/ccl/Makefile index f25d7d9..b5ba426 100644 --- a/ccl/Makefile +++ b/ccl/Makefile @@ -2,7 +2,13 @@ # Europagate, 1995 # # $Log: Makefile,v $ -# Revision 1.2 1995-04-17 09:37:36 quinn +# 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 @@ -37,6 +43,7 @@ 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 +53,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 +64,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