Files
linux-apfs/drivers/usb/core/Makefile
T

22 lines
413 B
Makefile
Raw Normal View History

2005-04-16 15:20:36 -07:00
#
# Makefile for USB Core files and filesystem
#
usbcore-objs := usb.o hub.o hcd.o urb.o message.o driver.o \
config.o file.o buffer.o sysfs.o endpoint.o \
2006-07-01 22:08:06 -04:00
devio.o notify.o generic.o
2005-04-16 15:20:36 -07:00
ifeq ($(CONFIG_PCI),y)
usbcore-objs += hcd-pci.o
endif
ifeq ($(CONFIG_USB_DEVICEFS),y)
2005-07-31 01:05:53 +02:00
usbcore-objs += inode.o devices.o
2005-04-16 15:20:36 -07:00
endif
obj-$(CONFIG_USB) += usbcore.o
ifeq ($(CONFIG_USB_DEBUG),y)
EXTRA_CFLAGS += -DDEBUG
endif