added $& to $(LIB) target for Sequent

This commit is contained in:
Guido van Rossum 1995-01-17 16:11:29 +00:00
parent 938178283c
commit 087579ea51
4 changed files with 4 additions and 4 deletions

View 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)

View File

@ -47,7 +47,7 @@ LIB= libObjects.a
all: $(LIB)
$(LIB): $(OBJS)
$(LIB): $& $(OBJS)
-rm -f $(LIB)
$(AR) cr $(LIB) $(OBJS)
$(RANLIB) $(LIB)

View File

@ -45,7 +45,7 @@ LIB= libParser.a
all: $(LIB) $(PGEN)
$(LIB): $(PARSEROBJS)
$(LIB): $& $(PARSEROBJS)
-rm -f $(LIB)
$(AR) cr $(LIB) $(PARSEROBJS)
$(RANLIB) $(LIB)

View File

@ -51,7 +51,7 @@ SYSLIBS= -lm
all: $(LIB)
$(LIB): $(OBJS)
$(LIB): $& $(OBJS)
-rm -f $(LIB)
$(AR) cr $(LIB) $(OBJS)
$(RANLIB) $(LIB)