summaryrefslogtreecommitdiff
path: root/target-ppc/Makefile.objs
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2012-05-30 04:23:30 +0000
committerAlexander Graf <agraf@suse.de>2012-06-24 01:04:41 +0200
commitec19c4d14643a38890745d46535d3149fec2033f (patch)
tree85cd7c09265ebc8f2ec1780cf022961caaee7668 /target-ppc/Makefile.objs
parentd15f74fb83fdaa80e8ef85001554d7fba0c1d0a3 (diff)
downloadqemu-ec19c4d14643a38890745d46535d3149fec2033f.tar.gz
ppc: Split MMU etc. helpers from op_helper.c
Move MMU, TLB, SLB and BAT ops to mmu_helper.c. Signed-off-by: Blue Swirl <blauwirbel@gmail.com> Signed-off-by: Alexander Graf <agraf@suse.de> Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'target-ppc/Makefile.objs')
-rw-r--r--target-ppc/Makefile.objs2
1 files changed, 2 insertions, 0 deletions
diff --git a/target-ppc/Makefile.objs b/target-ppc/Makefile.objs
index 5d63400ce2..0f89c2c53a 100644
--- a/target-ppc/Makefile.objs
+++ b/target-ppc/Makefile.objs
@@ -5,5 +5,7 @@ obj-y += op_helper.o helper.o
obj-y += excp_helper.o
obj-y += fpu_helper.o
obj-y += int_helper.o
+obj-y += mmu_helper.o
+$(obj)/mmu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)