mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 14:15:39 +00:00
target/arm: Makefile cleanup (softmmu)
Group SOFTMMU objects together. Since PSCI is TCG specific, keep it separate. Backports commit b601e0cd78c2c57548a468c6fdb566d514c05b89 from qemu
This commit is contained in:
parent
348b813c03
commit
b028a37fdb
|
@ -1,9 +1,9 @@
|
|||
obj-y += helper.o vfp_helper.o
|
||||
obj-y += cpu.o
|
||||
obj-$(CONFIG_SOFTMMU) += psci.o
|
||||
obj-$(TARGET_AARCH64) += cpu64.o unicorn_aarch64.o
|
||||
obj-$(TARGET_ARM) += unicorn_arm.o
|
||||
obj-y += arm-powerctl.o
|
||||
|
||||
obj-$(CONFIG_SOFTMMU) += arm-powerctl.o
|
||||
|
||||
DECODETREE = $(SRC_PATH)/scripts/decodetree.py
|
||||
|
||||
|
@ -30,6 +30,8 @@ obj-y += translate.o op_helper.o
|
|||
obj-y += crypto_helper.o
|
||||
obj-y += iwmmxt_helper.o vec_helper.o neon_helper.o
|
||||
|
||||
obj-$(CONFIG_SOFTMMU) += psci.o
|
||||
|
||||
obj-$(TARGET_AARCH64) += translate-a64.o helper-a64.o
|
||||
obj-$(TARGET_AARCH64) += translate-sve.o sve_helper.o
|
||||
obj-$(TARGET_AARCH64) += pauth_helper.o
|
||||
|
|
Loading…
Reference in a new issue