Added echo in loop.
[yaz-moved-to-github.git] / makelib / Makefile
index e3737c7..71c8d7e 100644 (file)
@@ -1,7 +1,7 @@
 # Copyright (C) 1994, Index Data I/S 
 # All rights reserved.
 # Sebastian Hammer, Adam Dickmeiss
-# $Id: Makefile,v 1.2 1995-03-16 17:42:29 quinn Exp $
+# $Id: Makefile,v 1.4 1995-03-22 10:13:04 quinn Exp $
 
 #CC=
 SHELL=/bin/sh
@@ -15,7 +15,7 @@ all: $(LIB)
 
 $(LIB): $(LIBS)
        rm -f $(LIB)
-       for i in $(LIBS); do ar x $$i; done
+       for i in $(LIBS); do echo $$i; ar x $$i; done
        -rm -f __*
        ar qc $(LIB) *.o
        ranlib $(LIB)
@@ -23,3 +23,5 @@ $(LIB): $(LIBS)
 
 clean:
        -rm -f *.o
+
+depend: