mirror of
https://github.com/qemu/qemu.git
synced 2024-12-02 08:13:34 +08:00
901c4eaf96
Move misc helpers from op_helper.c to misc_helpers.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>
14 lines
390 B
Makefile
14 lines
390 B
Makefile
obj-y += translate.o op_helper.o helper.o
|
|
obj-$(CONFIG_SOFTMMU) += machine.o
|
|
obj-$(CONFIG_KVM) += kvm.o kvm_ppc.o
|
|
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-y += timebase_helper.o
|
|
obj-y += misc_helper.o
|
|
|
|
$(obj)/misc_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|
|
$(obj)/op_helper.o: QEMU_CFLAGS += $(HELPER_CFLAGS)
|