URL
https://opencores.org/ocsvn/test_project/test_project/trunk
Subversion Repositories test_project
[/] [test_project/] [trunk/] [linux_sd_driver/] [drivers/] [usb/] [storage/] [Makefile] - Rev 79
Go to most recent revision | Compare with Previous | Blame | View Log
## Makefile for the USB Mass Storage device drivers.## 15 Aug 2000, Christoph Hellwig <hch@infradead.org># Rewritten to use lists instead of if-statements.#EXTRA_CFLAGS := -Idrivers/scsiobj-$(CONFIG_USB_STORAGE) += usb-storage.ousb-storage-obj-$(CONFIG_USB_STORAGE_DEBUG) += debug.ousb-storage-obj-$(CONFIG_USB_STORAGE_USBAT) += shuttle_usbat.ousb-storage-obj-$(CONFIG_USB_STORAGE_SDDR09) += sddr09.ousb-storage-obj-$(CONFIG_USB_STORAGE_SDDR55) += sddr55.ousb-storage-obj-$(CONFIG_USB_STORAGE_FREECOM) += freecom.ousb-storage-obj-$(CONFIG_USB_STORAGE_DPCM) += dpcm.ousb-storage-obj-$(CONFIG_USB_STORAGE_ISD200) += isd200.ousb-storage-obj-$(CONFIG_USB_STORAGE_DATAFAB) += datafab.ousb-storage-obj-$(CONFIG_USB_STORAGE_JUMPSHOT) += jumpshot.ousb-storage-obj-$(CONFIG_USB_STORAGE_ALAUDA) += alauda.ousb-storage-obj-$(CONFIG_USB_STORAGE_ONETOUCH) += onetouch.ousb-storage-obj-$(CONFIG_USB_STORAGE_KARMA) += karma.ousb-storage-objs := scsiglue.o protocol.o transport.o usb.o \initializers.o $(usb-storage-obj-y)ifneq ($(CONFIG_USB_LIBUSUAL),)obj-$(CONFIG_USB) += libusual.oendif
Go to most recent revision | Compare with Previous | Blame | View Log
