Makefile 249 字节
Newer Older
L
Linus Torvalds 已提交
1 2 3 4
#
# Makefile for the kernel mmc device drivers.
#

5 6 7 8
ifeq ($(CONFIG_MMC_DEBUG),y)
	EXTRA_CFLAGS		+= -DDEBUG
endif

L
Linus Torvalds 已提交
9 10 11 12
#
# Core
#
obj-$(CONFIG_MMC)		+= mmc_core.o
13
mmc_core-y			:= mmc.o mmc_sysfs.o
L
Linus Torvalds 已提交
14

15 16
obj-$(CONFIG_MMC)		+= card/
obj-$(CONFIG_MMC)		+= host/
L
Linus Torvalds 已提交
17