]> git.proxmox.com Git - mirror_qemu.git/blame - target-s390x/Makefile.objs
virtio-balloon: convert VMSTATE_VIRTIO_DEVICE
[mirror_qemu.git] / target-s390x / Makefile.objs
CommitLineData
aea1e885
BS
1obj-y += translate.o helper.o cpu.o interrupt.o
2obj-y += int_helper.o fpu_helper.o cc_helper.o mem_helper.o misc_helper.o
78241744 3obj-y += gdbstub.o cpu_models.o cpu_features.o
dfebd7a7 4obj-$(CONFIG_SOFTMMU) += machine.o ioinst.o arch_dump.o mmu_helper.o
fbe37ef3 5obj-$(CONFIG_KVM) += kvm.o
dced7eec
MM
6
7# build and run feature list generator
8feat-src = $(SRC_PATH)/target-$(TARGET_BASE_ARCH)/
9feat-dst = $(BUILD_DIR)/$(TARGET_DIR)
10ifneq ($(MAKECMDGOALS),clean)
11GENERATED_HEADERS += $(feat-dst)gen-features.h
12endif
13
14$(feat-dst)gen-features.h: $(feat-dst)gen-features.h-timestamp
15 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
16$(feat-dst)gen-features.h-timestamp: $(feat-dst)gen-features
0bdb12c7 17 $(call quiet-command,$< >$@,"GEN","$(TARGET_DIR)gen-features.h")
dced7eec
MM
18
19$(feat-dst)gen-features: $(feat-src)gen-features.c
0bdb12c7 20 $(call quiet-command,$(HOST_CC) $(QEMU_INCLUDES) -o $@ $<,"CC","$(TARGET_DIR)gen-features")
dced7eec
MM
21
22clean-target:
23 rm -f gen-features.h-timestamp
24 rm -f gen-features.h
25 rm -f gen-features