diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2012-05-29 11:10:55 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2012-06-07 09:21:17 +0200 |
commit | be1029ec30d2eee9e0eb56190d1ed2ed9a400bdf (patch) | |
tree | 27aca4c0330ae190959617e77f83c1e146e4a8f0 /hw/ide/Makefile.objs | |
parent | 3d5a3f9a7fded758e37da15471d50de4b0f7e4a5 (diff) | |
download | qemu-be1029ec30d2eee9e0eb56190d1ed2ed9a400bdf.zip |
build: convert libhw to nested Makefile.objs
After this patch, the libhw* directories will have a hierarchy
that mimics the source tree. This is useful because we do have
a couple of files there that are in the top source directory.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/ide/Makefile.objs')
-rw-r--r-- | hw/ide/Makefile.objs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/hw/ide/Makefile.objs b/hw/ide/Makefile.objs new file mode 100644 index 0000000000..cf718dd016 --- /dev/null +++ b/hw/ide/Makefile.objs @@ -0,0 +1,10 @@ +hw-obj-$(CONFIG_IDE_CORE) += core.o atapi.o +hw-obj-$(CONFIG_IDE_QDEV) += qdev.o +hw-obj-$(CONFIG_IDE_PCI) += pci.o +hw-obj-$(CONFIG_IDE_ISA) += isa.o +hw-obj-$(CONFIG_IDE_PIIX) += piix.o +hw-obj-$(CONFIG_IDE_CMD646) += cmd646.o +hw-obj-$(CONFIG_IDE_MACIO) += macio.o +hw-obj-$(CONFIG_IDE_VIA) += via.o +hw-obj-$(CONFIG_AHCI) += ahci.o +hw-obj-$(CONFIG_AHCI) += ich.o |