Makefile.objs 1.1 KB
Newer Older
1

P
Paolo Bonzini 已提交
2 3
common-obj-$(CONFIG_ALPHA_DIS) += alpha.o
common-obj-$(CONFIG_ARM_DIS) += arm.o
4 5 6
common-obj-$(CONFIG_ARM_A64_DIS) += arm-a64.o
common-obj-$(CONFIG_ARM_A64_DIS) += libvixl/
libvixldir = $(SRC_PATH)/disas/libvixl
7 8 9 10
# The -Wno-sign-compare is needed only for gcc 4.6, which complains about
# some signed-unsigned equality comparisons in libvixl which later gcc
# versions do not.
arm-a64.o-cflags := -I$(libvixldir) -Wno-sign-compare
P
Paolo Bonzini 已提交
11
common-obj-$(CONFIG_CRIS_DIS) += cris.o
12
common-obj-$(CONFIG_HPPA_DIS) += hppa.o
P
Paolo Bonzini 已提交
13 14 15 16 17
common-obj-$(CONFIG_I386_DIS) += i386.o
common-obj-$(CONFIG_IA64_DIS) += ia64.o
common-obj-$(CONFIG_M68K_DIS) += m68k.o
common-obj-$(CONFIG_MICROBLAZE_DIS) += microblaze.o
common-obj-$(CONFIG_MIPS_DIS) += mips.o
A
Anthony Green 已提交
18
common-obj-$(CONFIG_MOXIE_DIS) += moxie.o
P
Paolo Bonzini 已提交
19 20 21 22 23
common-obj-$(CONFIG_PPC_DIS) += ppc.o
common-obj-$(CONFIG_S390_DIS) += s390.o
common-obj-$(CONFIG_SH4_DIS) += sh4.o
common-obj-$(CONFIG_SPARC_DIS) += sparc.o
common-obj-$(CONFIG_LM32_DIS) += lm32.o
24

25 26
# TODO: As long as the TCG interpreter and its generated code depend
# on the QEMU target, we cannot compile the disassembler here.
P
Paolo Bonzini 已提交
27
#common-obj-$(CONFIG_TCI_DIS) += tci.o