diff options
author | Paolo Bonzini | 2012-05-29 11:10:55 +0200 |
---|---|---|
committer | Paolo Bonzini | 2012-06-07 09:21:17 +0200 |
commit | be1029ec30d2eee9e0eb56190d1ed2ed9a400bdf (patch) | |
tree | 27aca4c0330ae190959617e77f83c1e146e4a8f0 /hw/usb/Makefile.objs | |
parent | build: move target-independent hw/ objects to nested Makefile.objs (diff) | |
download | qemu-be1029ec30d2eee9e0eb56190d1ed2ed9a400bdf.tar.gz qemu-be1029ec30d2eee9e0eb56190d1ed2ed9a400bdf.tar.xz 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/usb/Makefile.objs')
-rw-r--r-- | hw/usb/Makefile.objs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index 7dbc33b881..9c7ddf5cb2 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -1,3 +1,12 @@ +hw-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o +hw-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o +hw-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o +hw-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o +hw-obj-y += libhw.o + +hw-obj-$(CONFIG_SMARTCARD) += dev-smartcard-reader.o +hw-obj-$(CONFIG_USB_REDIR) += redirect.o + common-obj-y += core.o bus.o desc.o dev-hub.o common-obj-y += host-$(HOST_USB).o dev-bluetooth.o common-obj-y += dev-hid.o dev-storage.o dev-wacom.o |