diff options
author | Juan Quintela <quintela@redhat.com> | 2009-07-16 18:34:03 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-07-16 17:28:55 -0500 |
commit | 1c8726725896c4457c03b2858e0525008bb42032 (patch) | |
tree | 90182567d7e8966d6876954bff65079d44b18ad2 /Makefile.target | |
parent | c44098ca341349513c49b90f97bcb3ef7ec62eb8 (diff) |
TARGET_ARCH == TARGET_BASE_ARCH in m68k and arm
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 17 |
1 files 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) |