From ab3b491f2131e12503d165a8ffaef5f3a488eafe Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 11 Sep 2011 09:33:40 +0000 Subject: Sparc: split helper.c Move CPU init to cpu_init.c and interrupt handling to int32_helper.c for Sparc32 and int64_helper.c for Sparc64. Reviewed-by: Richard Henderson Signed-off-by: Blue Swirl --- Makefile.target | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'Makefile.target') diff --git a/Makefile.target b/Makefile.target index 417f23e00e..26c99ca0a6 100644 --- a/Makefile.target +++ b/Makefile.target @@ -76,6 +76,11 @@ libobj-y += cpuid.o endif libobj-$(CONFIG_NEED_MMU) += mmu.o libobj-$(TARGET_ARM) += neon_helper.o iwmmxt_helper.o +ifeq ($(TARGET_BASE_ARCH), sparc) +libobj-y += cpu_init.o +endif +libobj-$(TARGET_SPARC) += int32_helper.o +libobj-$(TARGET_SPARC64) += int64_helper.o libobj-y += disas.o -- cgit v1.2.1