15 changed files with 36 additions and 21 deletions
@ -1,2 +1,3 @@ |
|||
obj-y += helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
obj-y += translate.o helper.o cpu.o |
|||
obj-y += int_helper.o fpu_helper.o sys_helper.o mem_helper.o |
|||
|
|||
@ -1,5 +1,6 @@ |
|||
obj-y += arm-semi.o |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-y += neon_helper.o iwmmxt_helper.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,4 +1,5 @@ |
|||
obj-y += m68k-semi.o |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,4 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += mmu.o machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,6 @@ |
|||
obj-y += translate.o op_helper.o helper.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
obj-$(CONFIG_KVM) += kvm.o |
|||
obj-y += op_helper.o helper.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,5 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
obj-$(CONFIG_KVM) += kvm.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
@ -1,3 +1,4 @@ |
|||
obj-y += op_helper.o helper.o cpu.o |
|||
obj-y += translate.o op_helper.o helper.o cpu.o |
|||
obj-$(CONFIG_SOFTMMU) += machine.o |
|||
|
|||
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS) |
|||
|
|||
Loading…
Reference in new issue