Create a "core" subdirectory to house the central bus handling functions. Signed-off-by: Pierre Ossman <drzeus@drzeus.cx>
11 lines
168 B
Makefile
11 lines
168 B
Makefile
#
|
|
# Makefile for the kernel mmc core.
|
|
#
|
|
|
|
ifeq ($(CONFIG_MMC_DEBUG),y)
|
|
EXTRA_CFLAGS += -DDEBUG
|
|
endif
|
|
|
|
obj-$(CONFIG_MMC) += mmc_core.o
|
|
mmc_core-y := core.o sysfs.o
|
|
|