2006-09-01 17:49:50 +00:00
|
|
|
#
|
|
|
|
# (C) Copyright 2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
# MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
|
2005-08-17 10:55:25 +00:00
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2010-11-05 14:48:07 +00:00
|
|
|
LIB := $(obj)libnand.o
|
2006-09-01 17:49:50 +00:00
|
|
|
|
2008-08-12 23:40:43 +00:00
|
|
|
ifdef CONFIG_CMD_NAND
|
2011-09-14 19:30:16 +00:00
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
|
|
ifdef CONFIG_SPL_NAND_SIMPLE
|
|
|
|
COBJS-y += nand_spl_simple.o
|
|
|
|
endif
|
2011-11-01 20:00:29 +00:00
|
|
|
ifdef CONFIG_SPL_NAND_LOAD
|
|
|
|
COBJS-y += nand_spl_load.o
|
|
|
|
endif
|
2011-09-14 19:30:16 +00:00
|
|
|
else
|
2007-09-24 15:05:30 +00:00
|
|
|
COBJS-y += nand.o
|
|
|
|
COBJS-y += nand_bbt.o
|
2008-08-12 23:40:43 +00:00
|
|
|
COBJS-y += nand_ids.o
|
2007-09-24 15:05:30 +00:00
|
|
|
COBJS-y += nand_util.o
|
2011-09-14 19:30:16 +00:00
|
|
|
endif
|
2011-10-12 07:32:06 +00:00
|
|
|
COBJS-$(CONFIG_MTD_ECC_SOFT) += nand_ecc.o
|
2011-09-14 19:30:16 +00:00
|
|
|
COBJS-y += nand_base.o
|
2011-10-12 07:31:59 +00:00
|
|
|
COBJS-$(CONFIG_NAND_ECC_BCH) += nand_bch.o
|
2007-09-24 15:05:30 +00:00
|
|
|
|
2009-03-22 09:22:34 +00:00
|
|
|
COBJS-$(CONFIG_NAND_ATMEL) += atmel_nand.o
|
2008-11-27 02:43:06 +00:00
|
|
|
COBJS-$(CONFIG_DRIVER_NAND_BFIN) += bfin_nand.o
|
2009-03-30 16:58:39 +00:00
|
|
|
COBJS-$(CONFIG_NAND_DAVINCI) += davinci_nand.o
|
2008-03-21 21:12:51 +00:00
|
|
|
COBJS-$(CONFIG_NAND_FSL_ELBC) += fsl_elbc_nand.o
|
2011-03-22 03:57:39 +00:00
|
|
|
COBJS-$(CONFIG_NAND_FSL_IFC) += fsl_ifc_nand.o
|
2008-08-12 23:40:43 +00:00
|
|
|
COBJS-$(CONFIG_NAND_FSL_UPM) += fsl_upm.o
|
2011-10-12 04:24:06 +00:00
|
|
|
COBJS-$(CONFIG_NAND_JZ4740) += jz4740_nand.o
|
2009-07-16 19:19:29 +00:00
|
|
|
COBJS-$(CONFIG_NAND_KB9202) += kb9202_nand.o
|
2009-06-29 09:55:18 +00:00
|
|
|
COBJS-$(CONFIG_NAND_KIRKWOOD) += kirkwood_nand.o
|
2009-07-21 15:13:40 +00:00
|
|
|
COBJS-$(CONFIG_NAND_KMETER1) += kmeter1_nand.o
|
2009-06-09 14:57:03 +00:00
|
|
|
COBJS-$(CONFIG_NAND_MPC5121_NFC) += mpc5121_nfc.o
|
2009-08-10 22:32:54 +00:00
|
|
|
COBJS-$(CONFIG_NAND_MXC) += mxc_nand.o
|
2011-11-08 23:18:16 +00:00
|
|
|
COBJS-$(CONFIG_NAND_MXS) += mxs_nand.o
|
2009-07-16 13:12:48 +00:00
|
|
|
COBJS-$(CONFIG_NAND_NDFC) += ndfc.o
|
2009-02-09 14:53:31 +00:00
|
|
|
COBJS-$(CONFIG_NAND_NOMADIK) += nomadik.o
|
2009-06-18 17:41:03 +00:00
|
|
|
COBJS-$(CONFIG_NAND_S3C2410) += s3c2410_nand.o
|
2008-08-30 22:39:47 +00:00
|
|
|
COBJS-$(CONFIG_NAND_S3C64XX) += s3c64xx.o
|
2010-01-15 13:45:46 +00:00
|
|
|
COBJS-$(CONFIG_NAND_SPEAR) += spr_nand.o
|
2008-12-14 08:47:16 +00:00
|
|
|
COBJS-$(CONFIG_NAND_OMAP_GPMC) += omap_gpmc.o
|
2009-05-26 02:42:28 +00:00
|
|
|
COBJS-$(CONFIG_NAND_PLAT) += nand_plat.o
|
2008-08-12 23:40:43 +00:00
|
|
|
endif
|
2008-01-14 20:09:32 +00:00
|
|
|
|
2007-09-24 15:05:30 +00:00
|
|
|
COBJS := $(COBJS-y)
|
2008-05-20 14:00:29 +00:00
|
|
|
SRCS := $(COBJS:.o=.c)
|
|
|
|
OBJS := $(addprefix $(obj),$(COBJS))
|
2005-08-17 10:55:25 +00:00
|
|
|
|
|
|
|
all: $(LIB)
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
$(LIB): $(obj).depend $(OBJS)
|
2010-11-05 14:48:07 +00:00
|
|
|
$(call cmd_link_o_target, $(OBJS))
|
2005-08-17 10:55:25 +00:00
|
|
|
|
|
|
|
#########################################################################
|
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2005-08-17 10:55:25 +00:00
|
|
|
|
2006-09-01 17:49:50 +00:00
|
|
|
sinclude $(obj).depend
|
|
|
|
|
|
|
|
#########################################################################
|