]> Git Repo - qemu.git/blame - target/s390x/Makefile.objs
s390x/tcg: add basic MSA features
[qemu.git] / target / s390x / Makefile.objs
CommitLineData
b114588c
TH
1obj-y += cpu.o cpu_models.o cpu_features.o gdbstub.o interrupt.o helper.o
2obj-$(CONFIG_TCG) += translate.o cc_helper.o excp_helper.o fpu_helper.o
7705c750 3obj-$(CONFIG_TCG) += int_helper.o mem_helper.o misc_helper.o crypto_helper.o
3d672205 4obj-$(CONFIG_SOFTMMU) += machine.o ioinst.o arch_dump.o mmu_helper.o diag.o
fbe37ef3 5obj-$(CONFIG_KVM) += kvm.o
f16bbb9b 6obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
dced7eec
MM
7
8# build and run feature list generator
fcf5ef2a 9feat-src = $(SRC_PATH)/target/$(TARGET_BASE_ARCH)/
dced7eec
MM
10feat-dst = $(BUILD_DIR)/$(TARGET_DIR)
11ifneq ($(MAKECMDGOALS),clean)
4f04f13c 12GENERATED_FILES += $(feat-dst)gen-features.h
dced7eec
MM
13endif
14
15$(feat-dst)gen-features.h: $(feat-dst)gen-features.h-timestamp
16 @cmp $< $@ >/dev/null 2>&1 || cp $< $@
17$(feat-dst)gen-features.h-timestamp: $(feat-dst)gen-features
0bdb12c7 18 $(call quiet-command,$< >$@,"GEN","$(TARGET_DIR)gen-features.h")
dced7eec
MM
19
20$(feat-dst)gen-features: $(feat-src)gen-features.c
0bdb12c7 21 $(call quiet-command,$(HOST_CC) $(QEMU_INCLUDES) -o $@ $<,"CC","$(TARGET_DIR)gen-features")
dced7eec
MM
22
23clean-target:
24 rm -f gen-features.h-timestamp
25 rm -f gen-features.h
26 rm -f gen-features
This page took 0.287896 seconds and 4 git commands to generate.