blob: d596a4ee3b09bb905b0883d1f2146fe26291bfa4 [file] [log] [blame]
wdenkfa850ba2002-10-29 19:01:12 +00001#
Wolfgang Denk9a74ab62007-10-23 16:50:03 +02002# (C) Copyright 2000-2007
wdenkfa850ba2002-10-29 19:01:12 +00003# 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
wdenk29e7f5a2004-03-12 00:14:09 +000015# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
wdenkfa850ba2002-10-29 19:01:12 +000016# 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
26# CFLAGS += -DET_DEBUG -DDEBUG
27
Marian Balakowiczd62379d2006-09-01 19:49:50 +020028LIB = $(obj)libdrivers.a
wdenkfa850ba2002-10-29 19:01:12 +000029
Grant Likely3c7bb1e2007-09-24 09:05:30 -060030#
Grant Likely74d0ace2007-09-24 09:05:31 -060031# Block and Flash Drivers
32#
Grant Likely74d0ace2007-09-24 09:05:31 -060033COBJS-y += at45.o
Grant Likely74d0ace2007-09-24 09:05:31 -060034COBJS-y += cfi_flash.o
35COBJS-y += dataflash.o
36COBJS-y += mw_eeprom.o
Grant Likely74d0ace2007-09-24 09:05:31 -060037
Grant Likely1179ad12007-09-24 09:05:30 -060038COBJS := $(COBJS-y)
Marian Balakowiczd62379d2006-09-01 19:49:50 +020039SRCS := $(COBJS:.o=.c)
40OBJS := $(addprefix $(obj),$(COBJS))
41
wdenkfa850ba2002-10-29 19:01:12 +000042all: $(LIB)
43
Marian Balakowiczd62379d2006-09-01 19:49:50 +020044$(LIB): $(obj).depend $(OBJS)
Wolfgang Denk6a65e422006-10-09 01:02:05 +020045 $(AR) $(ARFLAGS) $@ $(OBJS)
wdenkfa850ba2002-10-29 19:01:12 +000046
47#########################################################################
48
Marian Balakowiczd62379d2006-09-01 19:49:50 +020049# defines $(obj).depend target
50include $(SRCTREE)/rules.mk
wdenkfa850ba2002-10-29 19:01:12 +000051
Marian Balakowiczd62379d2006-09-01 19:49:50 +020052sinclude $(obj).depend
wdenkfa850ba2002-10-29 19:01:12 +000053
54#########################################################################