diff options
Diffstat (limited to 'drivers/usb/core/Makefile')
-rw-r--r-- | drivers/usb/core/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/drivers/usb/core/Makefile b/drivers/usb/core/Makefile new file mode 100644 index 00000000000..9e8c377b816 --- /dev/null +++ b/drivers/usb/core/Makefile @@ -0,0 +1,16 @@ +# +# Makefile for USB Core files and filesystem +# + +usbcore-objs := usb.o hub.o hcd.o urb.o message.o \ + config.o file.o buffer.o sysfs.o + +ifeq ($(CONFIG_PCI),y) + usbcore-objs += hcd-pci.o +endif + +ifeq ($(CONFIG_USB_DEVICEFS),y) + usbcore-objs += devio.o inode.o devices.o +endif + +obj-$(CONFIG_USB) += usbcore.o |