Makefile (94bd217e2d683719ab21a4ac117d8a1b91cbedc9) Makefile (f61870ee6f8cc77a844e22f26c58028078df7167)
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
8ccflags-y := -Idrivers/scsi
9
10obj-$(CONFIG_USB_UAS) += uas.o
11obj-$(CONFIG_USB_STORAGE) += usb-storage.o
12
13usb-storage-y := scsiglue.o protocol.o transport.o usb.o
14usb-storage-y += initializers.o sierra_ms.o option_ms.o
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
8ccflags-y := -Idrivers/scsi
9
10obj-$(CONFIG_USB_UAS) += uas.o
11obj-$(CONFIG_USB_STORAGE) += usb-storage.o
12
13usb-storage-y := scsiglue.o protocol.o transport.o usb.o
14usb-storage-y += initializers.o sierra_ms.o option_ms.o
15
15usb-storage-y += usual-tables.o
16usb-storage-$(CONFIG_USB_STORAGE_DEBUG) += debug.o
17
16usb-storage-$(CONFIG_USB_STORAGE_DEBUG) += debug.o
17
18ifeq ($(CONFIG_USB_LIBUSUAL),)
19 usb-storage-y += usual-tables.o
20else
21 obj-$(CONFIG_USB) += usb-libusual.o
22 usb-libusual-y := libusual.o usual-tables.o
23endif
24
25obj-$(CONFIG_USB_STORAGE_ALAUDA) += ums-alauda.o
26obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o
27obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o
28obj-$(CONFIG_USB_STORAGE_ENE_UB6250) += ums-eneub6250.o
29obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o
30obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o
31obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += ums-jumpshot.o
32obj-$(CONFIG_USB_STORAGE_KARMA) += ums-karma.o

--- 19 unchanged lines hidden ---
18obj-$(CONFIG_USB_STORAGE_ALAUDA) += ums-alauda.o
19obj-$(CONFIG_USB_STORAGE_CYPRESS_ATACB) += ums-cypress.o
20obj-$(CONFIG_USB_STORAGE_DATAFAB) += ums-datafab.o
21obj-$(CONFIG_USB_STORAGE_ENE_UB6250) += ums-eneub6250.o
22obj-$(CONFIG_USB_STORAGE_FREECOM) += ums-freecom.o
23obj-$(CONFIG_USB_STORAGE_ISD200) += ums-isd200.o
24obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += ums-jumpshot.o
25obj-$(CONFIG_USB_STORAGE_KARMA) += ums-karma.o

--- 19 unchanged lines hidden ---