blob: ac85cc3506a2f9f167775f03f9d054fb6493c272 [file] [log] [blame]
wdenkf9087a32002-11-03 00:30:25 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
wdenkf9087a32002-11-03 00:30:25 +00005# (C) Copyright 2002
6# James F. Dougherty, Broadcom Corporation, jfd@broadcom.com
7# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8#
9# 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
Marian Balakowiczf9328632006-09-01 19:49:50 +020030LIB = $(obj)lib$(BOARD).a
wdenkf9087a32002-11-03 00:30:25 +000031
Marian Balakowiczf9328632006-09-01 19:49:50 +020032COBJS = $(BOARD).o flash.o ns16550.o serial.o m48t59y.o
wdenkf9087a32002-11-03 00:30:25 +000033
34SOBJS = early_init.o
35
Marian Balakowiczf9328632006-09-01 19:49:50 +020036SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
37OBJS := $(addprefix $(obj),$(COBJS))
38SOBJS := $(addprefix $(obj),$(SOBJS))
39
40$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020041 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenkf9087a32002-11-03 00:30:25 +000042
43#########################################################################
44
Marian Balakowiczf9328632006-09-01 19:49:50 +020045# defines $(obj).depend target
46include $(SRCTREE)/rules.mk
wdenkf9087a32002-11-03 00:30:25 +000047
Marian Balakowiczf9328632006-09-01 19:49:50 +020048sinclude $(obj).depend
wdenkf9087a32002-11-03 00:30:25 +000049
50#########################################################################