]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
added $& to $(LIB) target for Sequent
authorGuido van Rossum <guido@python.org>
Tue, 17 Jan 1995 16:11:29 +0000 (16:11 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 17 Jan 1995 16:11:29 +0000 (16:11 +0000)
Modules/Makefile.pre.in
Objects/Makefile.in
Parser/Makefile.in
Python/Makefile.in

index 8ebf62a03d1b91a0173f9f4d98518ff087464fb6..0feec275f2a831b1dbf18254a23e7029acaa9205 100644 (file)
@@ -74,7 +74,7 @@ SYSLIBS=      $(LIBM) $(LIBC)
 
 all:           $(LIB) ../python sharedmods
 
-$(LIB):                $(OBJS) Makefile
+$(LIB):                $& $(OBJS) Makefile
                -rm -f $(LIB)
                $(AR) cr $(LIB) $(OBJS)
                $(RANLIB) $(LIB)
index 78e9b5a09f7530fd7ae9876234222f7b3e18eafd..60a71cade071c6bdd731c16be4d478f05b649629 100644 (file)
@@ -47,7 +47,7 @@ LIB=          libObjects.a
 
 all:           $(LIB)
 
-$(LIB):                $(OBJS)
+$(LIB):                $& $(OBJS)
                -rm -f $(LIB)
                $(AR) cr $(LIB) $(OBJS)
                $(RANLIB) $(LIB)
index 6a8fc219e26f33deab45115a46e9ddf52537cceb..1b8f1f8b63e7ff301cc9bb94a803e110ac83604f 100644 (file)
@@ -45,7 +45,7 @@ LIB=          libParser.a
 
 all:           $(LIB) $(PGEN)
 
-$(LIB):                $(PARSEROBJS)
+$(LIB):                $& $(PARSEROBJS)
                -rm -f $(LIB)
                $(AR) cr $(LIB) $(PARSEROBJS)
                $(RANLIB) $(LIB)
index d5ced26c662ef228bcdbae8395258af2b4b0265c..9bbbb346d43923871f1961a4d816d1deee8e6eef 100644 (file)
@@ -51,7 +51,7 @@ SYSLIBS=      -lm
 
 all:           $(LIB)
 
-$(LIB):                $(OBJS)
+$(LIB):                $& $(OBJS)
                -rm -f $(LIB)
                $(AR) cr $(LIB) $(OBJS)
                $(RANLIB) $(LIB)