migration/colo.h: Remove obsolete codes
[qemu/kevin.git] / target / s390x / Makefile.objs
blob68eeee3d2f9be0cb1223f2362570de6c951f8a4f
1 obj-y += cpu.o cpu_models.o cpu_features.o gdbstub.o interrupt.o helper.o
2 obj-$(CONFIG_TCG) += translate.o cc_helper.o excp_helper.o fpu_helper.o
3 obj-$(CONFIG_TCG) += int_helper.o mem_helper.o misc_helper.o crypto_helper.o
4 obj-$(CONFIG_TCG) += vec_helper.o
5 obj-$(CONFIG_SOFTMMU) += machine.o ioinst.o arch_dump.o mmu_helper.o diag.o
6 obj-$(CONFIG_SOFTMMU) += sigp.o
7 obj-$(CONFIG_KVM) += kvm.o
8 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
9 obj-$(call lnot,$(CONFIG_TCG)) += tcg-stub.o
11 # build and run feature list generator
12 feat-src = $(SRC_PATH)/target/$(TARGET_BASE_ARCH)/
13 feat-dst = $(BUILD_DIR)/$(TARGET_DIR)
14 ifneq ($(MAKECMDGOALS),clean)
15 GENERATED_FILES += $(feat-dst)gen-features.h
16 endif
18 $(feat-dst)gen-features.h: $(feat-dst)gen-features.h-timestamp
19         @cmp $< $@ >/dev/null 2>&1 || cp $< $@
20 $(feat-dst)gen-features.h-timestamp: $(feat-dst)gen-features
21         $(call quiet-command,$< >$@,"GEN","$(TARGET_DIR)gen-features.h")
23 $(feat-dst)gen-features: $(feat-src)gen-features.c
24         $(call quiet-command,$(HOST_CC) $(QEMU_INCLUDES) -o $@ $<,"CC","$(TARGET_DIR)gen-features")
26 clean-target:
27         rm -f gen-features.h-timestamp
28         rm -f gen-features.h
29         rm -f gen-features