]> git.proxmox.com Git - mirror_qemu.git/blob - target/s390x/Makefile.objs
Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging
[mirror_qemu.git] / target / s390x / Makefile.objs
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
10
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-y += $(feat-dst)gen-features.h
16 endif
17
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")
22
23 $(feat-dst)gen-features: $(feat-src)gen-features.c
24 $(call quiet-command,$(HOST_CC) $(QEMU_INCLUDES) -o $@ $<,"CC","$(TARGET_DIR)gen-features")
25
26 clean-target:
27 rm -f gen-features.h-timestamp
28 rm -f gen-features.h
29 rm -f gen-features