Group SOFTMMU objects together. Signed-off-by: Philippe Mathieu-Daudé <phi...@redhat.com> --- target/arm/Makefile.objs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/target/arm/Makefile.objs b/target/arm/Makefile.objs index 626e340f55..72b42f825f 100644 --- a/target/arm/Makefile.objs +++ b/target/arm/Makefile.objs @@ -1,9 +1,9 @@ obj-y += arm-semi.o -obj-$(CONFIG_SOFTMMU) += machine.o psci.o arch_dump.o monitor.o -obj-y += helper.o cpu.o -obj-y += gdbstub.o +obj-y += cpu.o helper.o gdbstub.o obj-$(TARGET_AARCH64) += cpu64.o gdbstub64.o -obj-$(CONFIG_SOFTMMU) += arm-powerctl.o + +obj-$(CONFIG_SOFTMMU) += machine.o arch_dump.o monitor.o arm-powerctl.o +obj-$(CONFIG_SOFTMMU) += psci.o obj-$(CONFIG_KVM) += kvm.o obj-$(call land,$(CONFIG_KVM),$(call lnot,$(TARGET_AARCH64))) += kvm32.o -- 2.20.1