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 all: $(LIB) ../python sharedmods
$(LIB): $(OBJS) Makefile $(LIB): $& $(OBJS) Makefile
-rm -f $(LIB) -rm -f $(LIB)
$(AR) cr $(LIB) $(OBJS) $(AR) cr $(LIB) $(OBJS)
$(RANLIB) $(LIB) $(RANLIB) $(LIB)

View file

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

View file

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

View file

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