From 1c8726725896c4457c03b2858e0525008bb42032 Mon Sep 17 00:00:00 2001 From: Juan Quintela Date: Thu, 16 Jul 2009 18:34:03 +0200 Subject: [PATCH] TARGET_ARCH == TARGET_BASE_ARCH in m68k and arm Signed-off-by: Juan Quintela Signed-off-by: Anthony Liguori --- Makefile.target | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/Makefile.target b/Makefile.target index 5d30df5c31..bb2a93a346 100644 --- a/Makefile.target +++ b/Makefile.target @@ -288,23 +288,22 @@ obj-$(TARGET_HAS_ELFLOAD32) += elfload32.o ifeq ($(TARGET_ARCH), i386) obj-y += vm86.o endif -ifeq ($(TARGET_ARCH), arm) + nwfpe-obj-y := fpa11.o fpa11_cpdo.o fpa11_cpdt.o fpa11_cprt.o fpopcode.o nwfpe-obj-y += single_cpdo.o double_cpdo.o extended_cpdo.o -obj-y += $(addprefix nwfpe/, $(nwfpe-obj-y)) -obj-y += arm-semi.o -endif -ifeq ($(TARGET_ARCH), m68k) -obj-y += m68k-sim.o m68k-semi.o -endif +obj-arm-y += $(addprefix nwfpe/, $(nwfpe-obj-y)) +obj-arm-y += arm-semi.o + +obj-m68k-y += m68k-sim.o m68k-semi.o # Note: this is a workaround. The real fix is to avoid compiling # cpu_signal_handler() in cpu-exec.c. signal.o: CFLAGS += $(HELPER_CFLAGS) $(QEMU_PROG): ARLIBS=../libqemu_user.a libqemu.a -$(QEMU_PROG): $(obj-y) ../libqemu_user.a libqemu.a - $(call LINK,$(obj-y)) +$(QEMU_PROG): $(obj-y) $(obj-$(TARGET_BASE_ARCH)-y) ../libqemu_user.a libqemu.a + $(call LINK,$(obj-y) $(obj-$(TARGET_BASE_ARCH)-y)) + ifeq ($(ARCH),alpha) # Mark as 32 bit binary, i. e. it will be mapped into the low 31 bit of # the address space (31 bit so sign extending doesn't matter)