From: Andreas Sandberg Date: Tue, 7 May 2013 12:47:04 +0000 (+0200) Subject: arm: Make libm5 a dependency of the m5 utility X-Git-Tag: stable_2013_10_14~119 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4153a76478e8cc0d0c09cf45c87d71f5d844e8bb;p=gem5.git 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. --- diff --git a/util/m5/Makefile.arm b/util/m5/Makefile.arm index a90dc1011..fd6e8938c 100644 --- a/util/m5/Makefile.arm +++ b/util/m5/Makefile.arm @@ -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)