X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=drivers%2Fusb%2Fcore%2FMakefile;h=34e9bac319b4e5af731727e5da58907f28612a61;hb=97bf2856c6014879bd04983a3e9dfcdac1e7fe85;hp=9e8c377b81612ab941339eb257178c64400a63e7;hpb=9213980e6a70d8473e0ffd4b39ab5b6caaba9ff5;p=linux-2.6.git diff --git a/drivers/usb/core/Makefile b/drivers/usb/core/Makefile index 9e8c377b8..34e9bac31 100644 --- a/drivers/usb/core/Makefile +++ b/drivers/usb/core/Makefile @@ -2,15 +2,20 @@ # 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 +usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \ + config.o file.o buffer.o sysfs.o endpoint.o \ + devio.o notify.o generic.o ifeq ($(CONFIG_PCI),y) usbcore-objs += hcd-pci.o endif ifeq ($(CONFIG_USB_DEVICEFS),y) - usbcore-objs += devio.o inode.o devices.o + usbcore-objs += inode.o devices.o endif obj-$(CONFIG_USB) += usbcore.o + +ifeq ($(CONFIG_USB_DEBUG),y) +EXTRA_CFLAGS += -DDEBUG +endif