usb-storage: make shuttle_usbat a separate module
[deliverable/linux.git] / drivers / usb / storage / Makefile
CommitLineData
1da177e4
LT
1#
2# Makefile for the USB Mass Storage device drivers.
3#
4# 15 Aug 2000, Christoph Hellwig <hch@infradead.org>
5# Rewritten to use lists instead of if-statements.
6#
7
8EXTRA_CFLAGS := -Idrivers/scsi
9
10obj-$(CONFIG_USB_STORAGE) += usb-storage.o
11
12usb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.o
1da177e4 13usb-storage-obj-$(CONFIG_USB_STORAGE_FREECOM) += freecom.o
1da177e4
LT
14usb-storage-obj-$(CONFIG_USB_STORAGE_DATAFAB) += datafab.o
15usb-storage-obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += jumpshot.o
e80b0fad 16usb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.o
34008dbf 17usb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.o
dfe0d3ba 18usb-storage-obj-$(CONFIG_USB_STORAGE_KARMA) += karma.o
1da177e4
LT
19
20usb-storage-objs := scsiglue.o protocol.o transport.o usb.o \
281b064f 21 initializers.o sierra_ms.o option_ms.o $(usb-storage-obj-y)
a00828e9 22
e6e244b6
AS
23ifeq ($(CONFIG_USB_LIBUSUAL),)
24 usb-storage-objs += usual-tables.o
25else
26 obj-$(CONFIG_USB) += libusual.o usual-tables.o
a00828e9 27endif
0ff71883 28
fcdb5140 29obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o
32d5493e 30obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o
0ff71883 31obj-$(CONFIG_USB_STORAGE_SDDR09) += ums-sddr09.o
70fcc005 32obj-$(CONFIG_USB_STORAGE_SDDR55) += ums-sddr55.o
26d6818f 33obj-$(CONFIG_USB_STORAGE_USBAT) += ums-usbat.o
0ff71883 34
fcdb5140 35ums-cypress-objs := cypress_atacb.o
32d5493e 36ums-isd200-objs := isd200.o
0ff71883 37ums-sddr09-objs := sddr09.o
70fcc005 38ums-sddr55-objs := sddr55.o
26d6818f 39ums-usbat-objs := shuttle_usbat.o
This page took 0.488272 seconds and 5 git commands to generate.