Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # Makefile for USB Core files and filesystem |
| 3 | # |
| 4 | |
matt mooney | 2501331 | 2010-09-24 12:17:33 -0700 | [diff] [blame] | 5 | ccflags-$(CONFIG_USB_DEBUG) := -DDEBUG |
matt mooney | 0a2b8a0 | 2010-10-06 19:03:26 -0700 | [diff] [blame] | 6 | |
| 7 | usbcore-y := usb.o hub.o hcd.o urb.o message.o driver.o |
| 8 | usbcore-y += config.o file.o buffer.o sysfs.o endpoint.o |
| 9 | usbcore-y += devio.o notify.o generic.o quirks.o devices.o |
Lan Tianyu | 6e30d7c | 2013-01-11 20:10:38 +0800 | [diff] [blame] | 10 | usbcore-y += port.o |
matt mooney | 0a2b8a0 | 2010-10-06 19:03:26 -0700 | [diff] [blame] | 11 | |
| 12 | usbcore-$(CONFIG_PCI) += hcd-pci.o |
Matthew Garrett | da0af6e | 2012-05-11 16:08:27 +0800 | [diff] [blame] | 13 | usbcore-$(CONFIG_ACPI) += usb-acpi.o |
matt mooney | 0a2b8a0 | 2010-10-06 19:03:26 -0700 | [diff] [blame] | 14 | |
| 15 | obj-$(CONFIG_USB) += usbcore.o |