diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-09-11 09:33:40 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-10-23 15:07:52 +0000 |
commit | ab3b491f2131e12503d165a8ffaef5f3a488eafe (patch) | |
tree | 0c7057376eb14ede160a21c11a732da33e82bb45 /Makefile.target | |
parent | c65f6fd4bc485f893cd032cd32c8f6eb2a6ae757 (diff) |
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 <rth@twiddle.net>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 5 insertions, 0 deletions
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 |