blob: 79d41d6a73ac6cd7f489cb6c01fdf00d803ee141 [file] [log] [blame]
wdenkdc7c9a12003-03-26 06:55:25 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2003-2006
wdenkdc7c9a12003-03-26 06:55:25 +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
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
Marian Balakowiczf9328632006-09-01 19:49:50 +020026LIB = $(obj)lib$(BOARD).a
wdenkdc7c9a12003-03-26 06:55:25 +000027
Jean-Christophe PLAGNIOL-VILLARD2a325ce2009-03-27 23:26:42 +010028COBJS-y += $(BOARD).o
29COBJS-y += flash.o
30COBJS-y += led.o
31ifdef CONFIG_HAS_DATAFLASH
32COBJS-$(CONFIG_DATAFLASH_MMC_SELECT) += mux.o
33COBJS-y += partition.o
34endif
wdenkdc7c9a12003-03-26 06:55:25 +000035
Jean-Christophe PLAGNIOL-VILLARD2a325ce2009-03-27 23:26:42 +010036SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
37OBJS := $(addprefix $(obj),$(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020038SOBJS := $(addprefix $(obj),$(SOBJS))
39
40$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020041 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenkdc7c9a12003-03-26 06:55:25 +000042
43clean:
44 rm -f $(SOBJS) $(OBJS)
45
46distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020047 rm -f $(LIB) core *.bak $(obj).depend
wdenkdc7c9a12003-03-26 06:55:25 +000048
49#########################################################################
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051# defines $(obj).depend target
52include $(SRCTREE)/rules.mk
wdenkdc7c9a12003-03-26 06:55:25 +000053
Marian Balakowiczf9328632006-09-01 19:49:50 +020054sinclude $(obj).depend
wdenkdc7c9a12003-03-26 06:55:25 +000055
56#########################################################################