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:
parent
e316e4e5fe
commit
4153a76478
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue