]> git.proxmox.com Git - qemu.git/blob - hw/usb/Makefile.objs
hw: move target-independent files to subdirectories
[qemu.git] / hw / usb / Makefile.objs
1 # usb subsystem core
2 common-obj-y += core.o combined-packet.o bus.o desc.o
3 common-obj-y += libhw.o
4
5 # usb host adapters
6 common-obj-$(CONFIG_USB_UHCI) += hcd-uhci.o
7 common-obj-$(CONFIG_USB_OHCI) += hcd-ohci.o
8 common-obj-$(CONFIG_USB_EHCI) += hcd-ehci.o hcd-ehci-pci.o hcd-ehci-sysbus.o
9 common-obj-$(CONFIG_USB_XHCI) += hcd-xhci.o
10
11 # emulated usb devices
12 common-obj-y += dev-hub.o
13 common-obj-y += dev-hid.o
14 common-obj-$(CONFIG_USB_TABLET_WACOM) += dev-wacom.o
15 common-obj-$(CONFIG_USB_STORAGE_BOT) += dev-storage.o
16 common-obj-$(CONFIG_USB_STORAGE_UAS) += dev-uas.o
17 common-obj-$(CONFIG_USB_AUDIO) += dev-audio.o
18 common-obj-$(CONFIG_USB_SERIAL) += dev-serial.o
19 common-obj-$(CONFIG_USB_NETWORK) += dev-network.o
20
21 # FIXME: make configurable too
22 CONFIG_USB_BLUETOOTH := y
23 common-obj-$(CONFIG_USB_BLUETOOTH) += dev-bluetooth.o
24
25 ifeq ($(CONFIG_USB_SMARTCARD),y)
26 common-obj-y += dev-smartcard-reader.o
27 common-obj-y += ccid-card-passthru.o
28 common-obj-$(CONFIG_SMARTCARD_NSS) += ccid-card-emulated.o
29 endif
30
31 # usb redirection
32 common-obj-$(CONFIG_USB_REDIR) += redirect.o quirks.o
33
34 # usb pass-through
35 common-obj-y += $(patsubst %,host-%.o,$(HOST_USB))