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:
Andreas Sandberg 2013-05-07 14:47:04 +02:00
parent e316e4e5fe
commit 4153a76478

View file

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