arm: Make libm5 a dependency of the m5 utility
authorAndreas Sandberg <andreas@sandberg.pp.se>
Tue, 7 May 2013 12:47:04 +0000 (14:47 +0200)
committerAndreas Sandberg <andreas@sandberg.pp.se>
Tue, 7 May 2013 12:47:04 +0000 (14:47 +0200)
The m5 utility wasn't relinked properly since libm5.a wasn't a
dependency of the utility. This changeset addresses that issue.

util/m5/Makefile.arm

index a90dc101103fc05340618ed5f170f22628cd9629..fd6e8938c61ce1a1e124640f97726181619aa02c 100644 (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)