blob: 28329ddf187c2f57cefee9e03395f1ee8912e707 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#
2# Makefile for USB Core files and filesystem
3#
4
Greg Kroah-Hartmanddae41b2005-11-16 13:41:28 -08005usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \
Greg Kroah-Hartman3099e752005-06-20 21:15:16 -07006 config.o file.o buffer.o sysfs.o devio.o notify.o
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
8ifeq ($(CONFIG_PCI),y)
9 usbcore-objs += hcd-pci.o
10endif
11
12ifeq ($(CONFIG_USB_DEVICEFS),y)
Kay Sieversfbf82fd2005-07-31 01:05:53 +020013 usbcore-objs += inode.o devices.o
Linus Torvalds1da177e2005-04-16 15:20:36 -070014endif
15
16obj-$(CONFIG_USB) += usbcore.o
Greg Kroah-Hartman654f3112005-11-17 09:48:09 -080017
18ifeq ($(CONFIG_USB_DEBUG),y)
19EXTRA_CFLAGS += -DDEBUG
20endif