From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:50045) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1FId-0001i1-EF for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:01:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1U1FIY-0008Vx-CG for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:00:55 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56185) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1U1FIX-0008VS-RI for qemu-devel@nongnu.org; Fri, 01 Feb 2013 07:00:50 -0500 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r11C0moP024907 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 1 Feb 2013 07:00:49 -0500 From: Gerd Hoffmann Date: Fri, 1 Feb 2013 13:00:41 +0100 Message-Id: <1359720044-8140-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1359720044-8140-1-git-send-email-kraxel@redhat.com> References: <1359720044-8140-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH 1/4] usb: Makefile cleanup List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Group files, sprinkle in some comments. Signed-off-by: Gerd Hoffmann --- hw/usb/Makefile.objs | 27 ++++++++++++++++++++------- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/hw/usb/Makefile.objs b/hw/usb/Makefile.objs index d1bbbc0..bfe5e5f 100644 --- a/hw/usb/Makefile.objs +++ b/hw/usb/Makefile.objs @@ -1,14 +1,27 @@ +# usb subsystem core +common-obj-y += core.o combined-packet.o bus.o desc.o +common-obj-y += libhw.o + +# usb host adapters common-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o common-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o common-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o hcd-ehci-pci.o hcd-ehci-sysbus.o common-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o -common-obj-y += libhw.o +# emulated usb devices +common-obj-y += dev-hub.o +common-obj-y += dev-hid.o +common-obj-y += dev-wacom.o +common-obj-y += dev-storage.o +common-obj-y += dev-uas.o +common-obj-y += dev-smartcard-reader.o +common-obj-y += dev-audio.o +common-obj-y += dev-serial.o +common-obj-y += dev-network.o +common-obj-y += dev-bluetooth.o + +# usb redirection common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o -common-obj-y += core.o combined-packet.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 -common-obj-y += dev-serial.o dev-network.o dev-audio.o -common-obj-y += dev-smartcard-reader.o -common-obj-y += dev-uas.o +# usb pass-through +common-obj-y += host-$(HOST_USB).o -- 1.7.9.7