arm: Make libm5 a dependency of the m5 utility
The m5 utility wasn't relinked properly since libm5.a wasn't a dependency of the utility. This changeset addresses that issue.
This commit is contained in:
@@ -69,7 +69,7 @@ all: libm5.a m5
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -o $@ -c $<
|
||||
|
||||
m5: $(OBJS)
|
||||
m5: $(OBJS) libm5.a
|
||||
$(CC) -o $@ $(OBJS) $(LDFLAGS)
|
||||
|
||||
libm5.a: $(LIB_OBJS)
|
||||
|
||||
Reference in New Issue
Block a user