wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 1 | # |
Wolfgang Denk | 41b4d28 | 2007-10-23 16:50:03 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2007 |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 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 |
wdenk | 232c150 | 2004-03-12 00:14:09 +0000 | [diff] [blame] | 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 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 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 26 | LIB := $(obj)libmtd.o |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 27 | |
Stefan Roese | d558107 | 2009-05-12 14:31:18 +0200 | [diff] [blame] | 28 | COBJS-$(CONFIG_MTD_DEVICE) += mtdcore.o |
| 29 | COBJS-$(CONFIG_MTD_PARTITIONS) += mtdpart.o |
Stefan Roese | 0a57265 | 2009-05-12 14:29:39 +0200 | [diff] [blame] | 30 | COBJS-$(CONFIG_MTD_CONCAT) += mtdconcat.o |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 31 | COBJS-$(CONFIG_HAS_DATAFLASH) += at45.o |
| 32 | COBJS-$(CONFIG_FLASH_CFI_DRIVER) += cfi_flash.o |
Piotr Ziecik | 91809ed | 2008-11-17 15:57:58 +0100 | [diff] [blame] | 33 | COBJS-$(CONFIG_FLASH_CFI_MTD) += cfi_mtd.o |
Jean-Christophe PLAGNIOL-VILLARD | b5873f1 | 2008-04-01 07:30:51 +0200 | [diff] [blame] | 34 | COBJS-$(CONFIG_HAS_DATAFLASH) += dataflash.o |
Macpaul Lin | 00d10eb | 2011-04-15 21:37:11 +0000 | [diff] [blame] | 35 | COBJS-$(CONFIG_FTSMC020) += ftsmc020.o |
Michael Schwingen | 81b20cc | 2007-12-07 23:35:02 +0100 | [diff] [blame] | 36 | COBJS-$(CONFIG_FLASH_CFI_LEGACY) += jedec_flash.o |
Jean-Christophe PLAGNIOL-VILLARD | 00b1883 | 2008-08-13 01:40:42 +0200 | [diff] [blame] | 37 | COBJS-$(CONFIG_MW_EEPROM) += mw_eeprom.o |
Vipin KUMAR | a6e34f7 | 2010-01-15 19:15:45 +0530 | [diff] [blame] | 38 | COBJS-$(CONFIG_SPEARSMI) += spr_smi.o |
Grant Likely | 5798f87 | 2007-09-24 09:05:31 -0600 | [diff] [blame] | 39 | |
Grant Likely | f0037c5 | 2007-09-24 09:05:30 -0600 | [diff] [blame] | 40 | COBJS := $(COBJS-y) |
Jean-Christophe PLAGNIOL-VILLARD | b5873f1 | 2008-04-01 07:30:51 +0200 | [diff] [blame] | 41 | SRCS := $(COBJS:.o=.c) |
| 42 | OBJS := $(addprefix $(obj),$(COBJS)) |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 43 | |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 44 | all: $(LIB) |
| 45 | |
Jean-Christophe PLAGNIOL-VILLARD | 59829cc | 2007-11-24 21:26:56 +0100 | [diff] [blame] | 46 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 47 | $(call cmd_link_o_target, $(OBJS)) |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 48 | |
| 49 | ######################################################################### |
| 50 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 51 | # defines $(obj).depend target |
| 52 | include $(SRCTREE)/rules.mk |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 53 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 54 | sinclude $(obj).depend |
wdenk | fa850ba | 2002-10-29 19:01:12 +0000 | [diff] [blame] | 55 | |
| 56 | ######################################################################### |