blob: 1f6f517260a628cd53f72ba682cd1fae0c3a1a6e [file] [log] [blame]
wdenkf4863a72004-02-07 01:27:10 +00001#
2# (C) Masami Komiya <mkomiya@sonare.it> 2004
3#
Marian Balakowiczf9328632006-09-01 19:49:50 +02004# (C) Copyright 2003-2006
wdenkf4863a72004-02-07 01:27:10 +00005# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6#
7# See file CREDITS for list of people who contributed to this
8# project.
9#
10# This program is free software; you can redistribute it and/or
11# modify it under the terms of the GNU General Public License as
12# published by the Free Software Foundation; either version 2 of
13# the License, or (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23# MA 02111-1307 USA
24#
25
26include $(TOPDIR)/config.mk
27
Marian Balakowiczf9328632006-09-01 19:49:50 +020028LIB = $(obj)lib$(BOARD).a
wdenkf4863a72004-02-07 01:27:10 +000029
Marian Balakowiczf9328632006-09-01 19:49:50 +020030COBJS = $(BOARD).o flash.o vr4131-pci.o
wdenk400558b2005-04-02 23:52:25 +000031SOBJS = lowlevel_init.o
wdenkf4863a72004-02-07 01:27:10 +000032
Marian Balakowiczf9328632006-09-01 19:49:50 +020033SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
34OBJS := $(addprefix $(obj),$(COBJS))
35SOBJS := $(addprefix $(obj),$(SOBJS))
36
37$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020038 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenkf4863a72004-02-07 01:27:10 +000039
40#########################################################################
41
Marian Balakowiczf9328632006-09-01 19:49:50 +020042# defines $(obj).depend target
43include $(SRCTREE)/rules.mk
wdenkf4863a72004-02-07 01:27:10 +000044
Marian Balakowiczf9328632006-09-01 19:49:50 +020045sinclude $(obj).depend
wdenkf4863a72004-02-07 01:27:10 +000046
47#########################################################################