]> git.proxmox.com Git - mirror_qemu.git/blob - target/arm/Makefile.objs
target/arm: Makefile cleanup (KVM)
[mirror_qemu.git] / target / arm / Makefile.objs
1 obj-y += arm-semi.o
2 obj-$(CONFIG_SOFTMMU) += machine.o psci.o arch_dump.o monitor.o
3 obj-y += helper.o vfp_helper.o
4 obj-y += cpu.o gdbstub.o
5 obj-$(TARGET_AARCH64) += cpu64.o gdbstub64.o
6 obj-$(CONFIG_SOFTMMU) += arm-powerctl.o
7
8 obj-$(CONFIG_KVM) += kvm.o
9 obj-$(call land,$(CONFIG_KVM),$(call lnot,$(TARGET_AARCH64))) += kvm32.o
10 obj-$(call land,$(CONFIG_KVM),$(TARGET_AARCH64)) += kvm64.o
11 obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
12
13 DECODETREE = $(SRC_PATH)/scripts/decodetree.py
14
15 target/arm/decode-sve.inc.c: $(SRC_PATH)/target/arm/sve.decode $(DECODETREE)
16 $(call quiet-command,\
17 $(PYTHON) $(DECODETREE) --decode disas_sve -o $@ $<,\
18 "GEN", $(TARGET_DIR)$@)
19
20 target/arm/decode-vfp.inc.c: $(SRC_PATH)/target/arm/vfp.decode $(DECODETREE)
21 $(call quiet-command,\
22 $(PYTHON) $(DECODETREE) --static-decode disas_vfp -o $@ $<,\
23 "GEN", $(TARGET_DIR)$@)
24
25 target/arm/decode-vfp-uncond.inc.c: $(SRC_PATH)/target/arm/vfp-uncond.decode $(DECODETREE)
26 $(call quiet-command,\
27 $(PYTHON) $(DECODETREE) --static-decode disas_vfp_uncond -o $@ $<,\
28 "GEN", $(TARGET_DIR)$@)
29
30 target/arm/translate-sve.o: target/arm/decode-sve.inc.c
31 target/arm/translate.o: target/arm/decode-vfp.inc.c
32 target/arm/translate.o: target/arm/decode-vfp-uncond.inc.c
33
34 obj-y += translate.o op_helper.o
35 obj-y += crypto_helper.o
36 obj-y += iwmmxt_helper.o vec_helper.o neon_helper.o
37
38 obj-$(TARGET_AARCH64) += translate-a64.o helper-a64.o
39 obj-$(TARGET_AARCH64) += translate-sve.o sve_helper.o
40 obj-$(TARGET_AARCH64) += pauth_helper.o