Travis support for the acceptance tests
[qemu/ar7.git] / target / s390x / Makefile.objs
blob22a9a9927acb1cddb2ca186b10bb90ddf96ad644
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_SOFTMMU) += machine.o ioinst.o arch_dump.o mmu_helper.o diag.o
5 obj-$(CONFIG_SOFTMMU) += sigp.o
6 obj-$(CONFIG_KVM) += kvm.o
7 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
8 obj-$(call lnot,$(CONFIG_TCG)) += tcg-stub.o
10 # build and run feature list generator
11 feat-src = $(SRC_PATH)/target/$(TARGET_BASE_ARCH)/
12 feat-dst = $(BUILD_DIR)/$(TARGET_DIR)
13 ifneq ($(MAKECMDGOALS),clean)
14 GENERATED_FILES += $(feat-dst)gen-features.h
15 endif
17 $(feat-dst)gen-features.h: $(feat-dst)gen-features.h-timestamp
18         @cmp $< $@ >/dev/null 2>&1 || cp $< $@
19 $(feat-dst)gen-features.h-timestamp: $(feat-dst)gen-features
20         $(call quiet-command,$< >$@,"GEN","$(TARGET_DIR)gen-features.h")
22 $(feat-dst)gen-features: $(feat-src)gen-features.c
23         $(call quiet-command,$(HOST_CC) $(QEMU_INCLUDES) -o $@ $<,"CC","$(TARGET_DIR)gen-features")
25 clean-target:
26         rm -f gen-features.h-timestamp
27         rm -f gen-features.h
28         rm -f gen-features