blob: 37e0663a3258d44f56764629bde2e55a318aec58 [file] [log] [blame]
Wolfgang Denk97caf672006-03-12 02:12:27 +01001#
2# U-boot Makefile
3#
Mike Frysinger6a675322008-02-19 00:54:20 -05004# Copyright (c) 2005-2008 Analog Devices Inc.
Wolfgang Denk97caf672006-03-12 02:12:27 +01005#
Wolfgang Denkb2846792007-03-22 00:13:12 +01006# (C) Copyright 2000-2006
Wolfgang Denk97caf672006-03-12 02:12:27 +01007# 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
Aubrey Li314d22f2007-04-05 18:31:18 +080024# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
25# MA 02110-1301 USA
Wolfgang Denk97caf672006-03-12 02:12:27 +010026#
27
28include $(TOPDIR)/config.mk
29
Mike Frysinger6a675322008-02-19 00:54:20 -050030CFLAGS += -DBFIN_BOARD_NAME='"$(BOARD)"'
31
Sebastien Carliera8d426f2010-11-05 15:48:07 +010032LIB = $(obj)lib$(ARCH).o
Wolfgang Denk97caf672006-03-12 02:12:27 +010033
Mike Frysingere59bac52009-11-30 13:51:24 -050034SOBJS-y += ins.o
Marian Balakowicz699ffe52008-02-27 11:00:47 +010035SOBJS-y += memcmp.o
36SOBJS-y += memcpy.o
37SOBJS-y += memmove.o
38SOBJS-y += memset.o
Mike Frysingere59bac52009-11-30 13:51:24 -050039SOBJS-y += outs.o
Robin Getz230d0012009-12-21 16:35:48 -050040SOBJS-$(CONFIG_CMD_KGDB) += __kgdb.o
Wolfgang Denk97caf672006-03-12 02:12:27 +010041
Marian Balakowicz699ffe52008-02-27 11:00:47 +010042COBJS-y += board.o
Mike Frysinger8cf07522008-08-07 15:27:52 -040043COBJS-y += boot.o
Marian Balakowicz699ffe52008-02-27 11:00:47 +010044COBJS-y += cache.o
Mike Frysinger9d93a622008-10-24 22:48:47 -040045COBJS-y += clocks.o
Mike Frysingereee16952008-10-06 03:31:52 -040046COBJS-$(CONFIG_CMD_CACHE_DUMP) += cmd_cache_dump.o
Robin Getz230d0012009-12-21 16:35:48 -050047COBJS-$(CONFIG_CMD_KGDB) += kgdb.o
Marian Balakowicz699ffe52008-02-27 11:00:47 +010048COBJS-y += muldi3.o
Mike Frysinger32ed1fe2011-05-10 16:22:25 -040049COBJS-$(CONFIG_HAS_POST) += post.o
Mike Frysinger94bae5c2008-03-30 15:46:13 -040050COBJS-y += string.o
Wolfgang Denk97caf672006-03-12 02:12:27 +010051
Wolfgang Denka1be4762008-05-20 16:00:29 +020052SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
Marian Balakowicz699ffe52008-02-27 11:00:47 +010053OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
Aubrey Li5ff05882007-03-12 01:42:06 +080054
Mike Frysinger4f0d5342009-08-22 19:50:22 -040055$(LIB): $(obj).depend $(OBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010056 $(call cmd_link_o_target, $(OBJS))
Wolfgang Denk97caf672006-03-12 02:12:27 +010057
58#########################################################################
59
Aubrey Li5ff05882007-03-12 01:42:06 +080060# defines $(obj).depend target
61include $(SRCTREE)/rules.mk
Wolfgang Denk97caf672006-03-12 02:12:27 +010062
Aubrey Li5ff05882007-03-12 01:42:06 +080063sinclude $(obj).depend
Wolfgang Denk97caf672006-03-12 02:12:27 +010064
65#########################################################################