diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2012-04-29 14:42:35 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-06-28 20:28:09 +0000 |
commit | 6bada5e80ee5941a3b7ab118b738a4097dd76e37 (patch) | |
tree | aa8240abf7b0556964b735fb1830c6992e0bbc97 /target-i386/Makefile.objs | |
parent | d7582078017c5c7c4a8ca0d794db1c896e86a105 (diff) | |
download | qemu-6bada5e80ee5941a3b7ab118b738a4097dd76e37.tar.gz qemu-6bada5e80ee5941a3b7ab118b738a4097dd76e37.tar.bz2 qemu-6bada5e80ee5941a3b7ab118b738a4097dd76e37.zip |
x86: split off SVM helpers
Move SVM helpers to svm_helper.c.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'target-i386/Makefile.objs')
-rw-r--r-- | target-i386/Makefile.objs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/target-i386/Makefile.objs b/target-i386/Makefile.objs index d4cbcd748a..25bea4373c 100644 --- a/target-i386/Makefile.objs +++ b/target-i386/Makefile.objs @@ -1,5 +1,5 @@ obj-y += translate.o op_helper.o helper.o cpu.o -obj-y += excp_helper.o fpu_helper.o cc_helper.o int_helper.o +obj-y += excp_helper.o fpu_helper.o cc_helper.o int_helper.o svm_helper.o obj-$(CONFIG_SOFTMMU) += machine.o arch_memory_mapping.o arch_dump.o obj-$(CONFIG_KVM) += kvm.o hyperv.o obj-$(CONFIG_LINUX_USER) += ioport-user.o @@ -9,3 +9,4 @@ $(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/fpu_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/cc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) $(obj)/int_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) +$(obj)/svm_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |