diff options
author | Juan Quintela <quintela@redhat.com> | 2009-10-07 02:41:06 +0200 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-10-08 21:17:11 -0500 |
commit | 185c66c81d95a929bc3d38ca52887a8da1e6887f (patch) | |
tree | 095d814478694808ecff65139c34934a291b2a30 /Makefile.target | |
parent | 642575843f38a4f05bbcaff0cbc287dee65c8a72 (diff) |
Only compile isa_mmio when one target uses it
Patchworks-ID: 35200
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile.target b/Makefile.target index 7a21164562..94bc03b2bd 100644 --- a/Makefile.target +++ b/Makefile.target @@ -154,13 +154,12 @@ endif #CONFIG_BSD_USER # System emulator target ifdef CONFIG_SOFTMMU -obj-y = vl.o monitor.o pci.o isa_mmio.o machine.o \ - gdbstub.o +obj-y = vl.o monitor.o pci.o machine.o gdbstub.o # virtio has to be here due to weird dependency between PCI and virtio-net. # need to fix this properly obj-y += virtio-blk.o virtio-balloon.o virtio-net.o virtio-console.o virtio-pci.o obj-$(CONFIG_KVM) += kvm.o kvm-all.o - +obj-$(CONFIG_ISA_MMIO) += isa_mmio.o LIBS+=-lz sound-obj-y = |