diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-05-29 17:50:03 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-06-07 09:21:18 +0200 |
commit | 49ac9e0a8cfb737d6da9c0b056c062e3dec0ba45 (patch) | |
tree | d708c37c7d51fb5c029685de4f06b877cc969072 /hw | |
parent | c353f261946ddbd814b333ae2440712b486977fd (diff) | |
download | qemu-49ac9e0a8cfb737d6da9c0b056c062e3dec0ba45.tar.gz qemu-49ac9e0a8cfb737d6da9c0b056c062e3dec0ba45.tar.bz2 qemu-49ac9e0a8cfb737d6da9c0b056c062e3dec0ba45.zip |
build: move device tree to per-target Makefile.objs
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/arm/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/microblaze/Makefile.objs | 1 | ||||
-rw-r--r-- | hw/ppc/Makefile.objs | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 92b4f1eb7f..a0ff6a62d6 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -35,5 +35,6 @@ obj-y += vexpress.o obj-y += strongarm.o obj-y += collie.o obj-y += pl041.o lm4549.o +obj-$(CONFIG_FDT) += ../device_tree.o obj-y := $(addprefix ../,$(obj-y)) diff --git a/hw/microblaze/Makefile.objs b/hw/microblaze/Makefile.objs index 41724425cb..020f7b6e9b 100644 --- a/hw/microblaze/Makefile.objs +++ b/hw/microblaze/Makefile.objs @@ -9,5 +9,6 @@ obj-y += xilinx_uartlite.o obj-y += xilinx_ethlite.o obj-y += xilinx_axidma.o obj-y += xilinx_axienet.o +obj-$(CONFIG_FDT) += ../device_tree.o obj-y := $(addprefix ../,$(obj-y)) diff --git a/hw/ppc/Makefile.objs b/hw/ppc/Makefile.objs index 5b09849bed..842e7b9299 100644 --- a/hw/ppc/Makefile.objs +++ b/hw/ppc/Makefile.objs @@ -21,6 +21,7 @@ obj-y += virtex_ml507.o obj-$(CONFIG_KVM) += kvm_ppc.o # PowerPC OpenPIC obj-y += openpic.o +obj-$(CONFIG_FDT) += ../device_tree.o # Xilinx PPC peripherals obj-y += xilinx_intc.o |