11 lines
269 B
Makefile
11 lines
269 B
Makefile
|
#
|
||
|
# Makefile for USB Class drivers
|
||
|
# (one step up from the misc category)
|
||
|
#
|
||
|
|
||
|
obj-$(CONFIG_USB_ACM) += cdc-acm.o
|
||
|
obj-$(CONFIG_USB_AUDIO) += audio.o
|
||
|
obj-$(CONFIG_USB_BLUETOOTH_TTY) += bluetty.o
|
||
|
obj-$(CONFIG_USB_MIDI) += usb-midi.o
|
||
|
obj-$(CONFIG_USB_PRINTER) += usblp.o
|