Makefile 318 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5
#
# Makefile for USB Core files and filesystem
#

usbcore-objs	:= usb.o hub.o hcd.o urb.o message.o \
6
			config.o file.o buffer.o sysfs.o devio.o notify.o
L
Linus Torvalds 已提交
7 8 9 10 11 12

ifeq ($(CONFIG_PCI),y)
	usbcore-objs	+= hcd-pci.o
endif

ifeq ($(CONFIG_USB_DEVICEFS),y)
13
	usbcore-objs	+= inode.o devices.o
L
Linus Torvalds 已提交
14 15 16
endif

obj-$(CONFIG_USB)	+= usbcore.o