]> git.ipfire.org Git - people/ms/u-boot.git/blame - drivers/mmc/Makefile
ATMEL: remove old atmel_mci driver
[people/ms/u-boot.git] / drivers / mmc / Makefile
CommitLineData
5ce13051
HS
1#
2# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
25
6d8962e8 26LIB := $(obj)libmmc.o
5ce13051 27
716ebf43 28COBJS-$(CONFIG_BFIN_SDH) += bfin_sdh.o
57418d21 29COBJS-$(CONFIG_DAVINCI_MMC) += davinci_mmc.o
50586ef2 30COBJS-$(CONFIG_FSL_ESDHC) += fsl_esdhc.o
f8ef0d4f 31COBJS-$(CONFIG_FTSDC010) += ftsdc010_esdhc.o
1592ef85
RM
32COBJS-$(CONFIG_GENERIC_MMC) += mmc.o
33COBJS-$(CONFIG_GENERIC_ATMEL_MCI) += gen_atmel_mci.o
d52ebf10 34COBJS-$(CONFIG_MMC_SPI) += mmc_spi.o
23b93e1d 35COBJS-$(CONFIG_ARM_PL180_MMCI) += arm_pl180_mmci.o
e75787d9 36COBJS-$(CONFIG_MV_SDHCI) += mv_sdhci.o
ba3dbaf2 37COBJS-$(CONFIG_MXC_MMC) += mxcmmc.o
71a758e1 38COBJS-$(CONFIG_MXS_MMC) += mxsmmc.o
de941241 39COBJS-$(CONFIG_OMAP_HSMMC) += omap_hsmmc.o
b03d92e5 40COBJS-$(CONFIG_PXA_MMC) += pxa_mmc.o
07133f2e 41COBJS-$(CONFIG_PXA_MMC_GENERIC) += pxa_mmc_gen.o
50002848 42COBJS-$(CONFIG_S5P_MMC) += s5p_mmc.o
af62a557 43COBJS-$(CONFIG_SDHCI) += sdhci.o
afb35666 44COBJS-$(CONFIG_SH_MMCIF) += sh_mmcif.o
21ef6a10 45COBJS-$(CONFIG_TEGRA2_MMC) += tegra2_mmc.o
c3bf1ad7 46
5ce13051
HS
47COBJS := $(COBJS-y)
48SRCS := $(COBJS:.o=.c)
49OBJS := $(addprefix $(obj),$(COBJS))
50
51all: $(LIB)
52
53$(LIB): $(obj).depend $(OBJS)
6d8962e8 54 $(call cmd_link_o_target, $(OBJS))
5ce13051
HS
55
56#########################################################################
57
58# defines $(obj).depend target
59include $(SRCTREE)/rules.mk
60
61sinclude $(obj).depend
62
63#########################################################################