Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 087579e

Browse files
committed
added $& to $(LIB) target for Sequent
1 parent 9381782 commit 087579e

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Modules/Makefile.pre.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ SYSLIBS= $(LIBM) $(LIBC)
7474

7575
all: $(LIB) ../python sharedmods
7676

77-
$(LIB): $(OBJS) Makefile
77+
$(LIB): $& $(OBJS) Makefile
7878
-rm -f $(LIB)
7979
$(AR) cr $(LIB) $(OBJS)
8080
$(RANLIB) $(LIB)

Objects/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ LIB= libObjects.a
4747

4848
all: $(LIB)
4949

50-
$(LIB): $(OBJS)
50+
$(LIB): $& $(OBJS)
5151
-rm -f $(LIB)
5252
$(AR) cr $(LIB) $(OBJS)
5353
$(RANLIB) $(LIB)

Parser/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ LIB= libParser.a
4545

4646
all: $(LIB) $(PGEN)
4747

48-
$(LIB): $(PARSEROBJS)
48+
$(LIB): $& $(PARSEROBJS)
4949
-rm -f $(LIB)
5050
$(AR) cr $(LIB) $(PARSEROBJS)
5151
$(RANLIB) $(LIB)

Python/Makefile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ SYSLIBS= -lm
5151

5252
all: $(LIB)
5353

54-
$(LIB): $(OBJS)
54+
$(LIB): $& $(OBJS)
5555
-rm -f $(LIB)
5656
$(AR) cr $(LIB) $(OBJS)
5757
$(RANLIB) $(LIB)

0 commit comments

Comments
 (0)