[PATCH] USB: reorg some functions out of the main usb.c file
[linux-2.6/cjktty.git] / drivers / usb / core / Makefile
blob28329ddf187c2f57cefee9e03395f1ee8912e707
2 # Makefile for USB Core files and filesystem
5 usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \
6 config.o file.o buffer.o sysfs.o devio.o notify.o
8 ifeq ($(CONFIG_PCI),y)
9 usbcore-objs += hcd-pci.o
10 endif
12 ifeq ($(CONFIG_USB_DEVICEFS),y)
13 usbcore-objs += inode.o devices.o
14 endif
16 obj-$(CONFIG_USB) += usbcore.o
18 ifeq ($(CONFIG_USB_DEBUG),y)
19 EXTRA_CFLAGS += -DDEBUG
20 endif