forked from Minki/linux
1c6a0718f0
Clean up the drivers/mmc directory by moving card and host drivers into subdirectories. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
18 lines
249 B
Makefile
18 lines
249 B
Makefile
#
|
|
# Makefile for the kernel mmc device drivers.
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
#
|
|
# Core
|
|
#
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
mmc_core-y := mmc.o mmc_sysfs.o
|
|
|
|
obj-$(CONFIG_MMC) += card/
|
|
obj-$(CONFIG_MMC) += host/
|
|
|