blob: 2d2ff2cbb9701a7735a18134101046ddf54d2338 [file] [log] [blame]
Stelian Pop6afcabf2008-02-07 16:37:54 +00001#
2# (C) Copyright 2003-2008
Stelian Pop567fb852008-05-08 22:52:09 +02003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Stelian Pop6afcabf2008-02-07 16:37:54 +00004#
Stelian Popd48abea2008-05-08 20:52:12 +02005# (C) Copyright 2008
6# Stelian Pop <stelian.pop@leadtechdesign.com>
7# Lead Tech Design <www.leadtechdesign.com>
8#
Stelian Pop6afcabf2008-02-07 16:37:54 +00009# See file CREDITS for list of people who contributed to this
10# project.
11#
12# This program is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License as
14# published by the Free Software Foundation; either version 2 of
15# the License, or (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20# GNU General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program; if not, write to the Free Software
24# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25# MA 02111-1307 USA
26#
27
28include $(TOPDIR)/config.mk
29
30LIB = $(obj)lib$(BOARD).a
31
Jean-Christophe PLAGNIOL-VILLARD76171212008-03-31 21:12:17 +020032COBJS-y += at91cap9adk.o
33COBJS-y += led.o
Ulf Samuelssonc3a60cb2008-04-12 20:29:44 +020034COBJS-y += partition.o
Jean-Christophe PLAGNIOL-VILLARD76171212008-03-31 21:12:17 +020035COBJS-$(CONFIG_CMD_NAND) += nand.o
Stelian Pop6afcabf2008-02-07 16:37:54 +000036
Jean-Christophe PLAGNIOL-VILLARD76171212008-03-31 21:12:17 +020037SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
38OBJS := $(addprefix $(obj),$(COBJS-y))
Stelian Pop6afcabf2008-02-07 16:37:54 +000039SOBJS := $(addprefix $(obj),$(SOBJS))
40
41$(LIB): $(obj).depend $(OBJS) $(SOBJS)
42 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
43
44clean:
45 rm -f $(SOBJS) $(OBJS)
46
47distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020048 rm -f $(LIB) core *.bak $(obj).depend
Stelian Pop6afcabf2008-02-07 16:37:54 +000049
50#########################################################################
51
52# defines $(obj).depend target
53include $(SRCTREE)/rules.mk
54
55sinclude $(obj).depend
56
57#########################################################################