diff options
| author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
| commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
| tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/usb/Makefile | |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'drivers/usb/Makefile')
| -rw-r--r-- | drivers/usb/Makefile | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/drivers/usb/Makefile b/drivers/usb/Makefile new file mode 100644 index 000000000000..a61d4433a989 --- /dev/null +++ b/drivers/usb/Makefile | |||
| @@ -0,0 +1,74 @@ | |||
| 1 | # | ||
| 2 | # Makefile for the kernel USB device drivers. | ||
| 3 | # | ||
| 4 | |||
| 5 | # Object files in subdirectories | ||
| 6 | |||
| 7 | obj-$(CONFIG_USB) += core/ | ||
| 8 | |||
| 9 | obj-$(CONFIG_USB_MON) += mon/ | ||
| 10 | |||
| 11 | obj-$(CONFIG_USB_EHCI_HCD) += host/ | ||
| 12 | obj-$(CONFIG_USB_OHCI_HCD) += host/ | ||
| 13 | obj-$(CONFIG_USB_UHCI_HCD) += host/ | ||
| 14 | obj-$(CONFIG_USB_SL811_HCD) += host/ | ||
| 15 | obj-$(CONFIG_ETRAX_USB_HOST) += host/ | ||
| 16 | |||
| 17 | obj-$(CONFIG_USB_ACM) += class/ | ||
| 18 | obj-$(CONFIG_USB_AUDIO) += class/ | ||
| 19 | obj-$(CONFIG_USB_BLUETOOTH_TTY) += class/ | ||
| 20 | obj-$(CONFIG_USB_MIDI) += class/ | ||
| 21 | obj-$(CONFIG_USB_PRINTER) += class/ | ||
| 22 | |||
| 23 | obj-$(CONFIG_USB_STORAGE) += storage/ | ||
| 24 | |||
| 25 | obj-$(CONFIG_USB_AIPTEK) += input/ | ||
| 26 | obj-$(CONFIG_USB_ATI_REMOTE) += input/ | ||
| 27 | obj-$(CONFIG_USB_HID) += input/ | ||
| 28 | obj-$(CONFIG_USB_KBD) += input/ | ||
| 29 | obj-$(CONFIG_USB_KBTAB) += input/ | ||
| 30 | obj-$(CONFIG_USB_MOUSE) += input/ | ||
| 31 | obj-$(CONFIG_USB_MTOUCH) += input/ | ||
| 32 | obj-$(CONFIG_USB_POWERMATE) += input/ | ||
| 33 | obj-$(CONFIG_USB_WACOM) += input/ | ||
| 34 | obj-$(CONFIG_USB_XPAD) += input/ | ||
| 35 | |||
| 36 | obj-$(CONFIG_USB_DABUSB) += media/ | ||
| 37 | obj-$(CONFIG_USB_DSBR) += media/ | ||
| 38 | obj-$(CONFIG_USB_IBMCAM) += media/ | ||
| 39 | obj-$(CONFIG_USB_KONICAWC) += media/ | ||
| 40 | obj-$(CONFIG_USB_OV511) += media/ | ||
| 41 | obj-$(CONFIG_USB_PWC) += media/ | ||
| 42 | obj-$(CONFIG_USB_SE401) += media/ | ||
| 43 | obj-$(CONFIG_USB_SN9C102) += media/ | ||
| 44 | obj-$(CONFIG_USB_STV680) += media/ | ||
| 45 | obj-$(CONFIG_USB_VICAM) += media/ | ||
| 46 | obj-$(CONFIG_USB_W9968CF) += media/ | ||
| 47 | |||
| 48 | obj-$(CONFIG_USB_CATC) += net/ | ||
| 49 | obj-$(CONFIG_USB_KAWETH) += net/ | ||
| 50 | obj-$(CONFIG_USB_PEGASUS) += net/ | ||
| 51 | obj-$(CONFIG_USB_RTL8150) += net/ | ||
| 52 | obj-$(CONFIG_USB_USBNET) += net/ | ||
| 53 | obj-$(CONFIG_USB_ZD1201) += net/ | ||
| 54 | |||
| 55 | obj-$(CONFIG_USB_MDC800) += image/ | ||
| 56 | obj-$(CONFIG_USB_MICROTEK) += image/ | ||
| 57 | |||
| 58 | obj-$(CONFIG_USB_SERIAL) += serial/ | ||
| 59 | |||
| 60 | obj-$(CONFIG_USB_AUERSWALD) += misc/ | ||
| 61 | obj-$(CONFIG_USB_CYTHERM) += misc/ | ||
| 62 | obj-$(CONFIG_USB_EMI26) += misc/ | ||
| 63 | obj-$(CONFIG_USB_EMI62) += misc/ | ||
| 64 | obj-$(CONFIG_USB_IDMOUSE) += misc/ | ||
| 65 | obj-$(CONFIG_USB_LCD) += misc/ | ||
| 66 | obj-$(CONFIG_USB_LED) += misc/ | ||
| 67 | obj-$(CONFIG_USB_LEGOTOWER) += misc/ | ||
| 68 | obj-$(CONFIG_USB_RIO500) += misc/ | ||
| 69 | obj-$(CONFIG_USB_TEST) += misc/ | ||
| 70 | obj-$(CONFIG_USB_USS720) += misc/ | ||
| 71 | obj-$(CONFIG_USB_PHIDGETSERVO) += misc/ | ||
| 72 | |||
| 73 | obj-$(CONFIG_USB_ATM) += atm/ | ||
| 74 | obj-$(CONFIG_USB_SPEEDTOUCH) += atm/ | ||
