2006-03-12 02:12:27 +01:00
|
|
|
#
|
|
|
|
# U-boot Makefile
|
|
|
|
#
|
2008-02-19 00:54:20 -05:00
|
|
|
# Copyright (c) 2005-2008 Analog Devices Inc.
|
2006-03-12 02:12:27 +01:00
|
|
|
#
|
2007-03-22 00:13:12 +01:00
|
|
|
# (C) Copyright 2000-2006
|
2006-03-12 02:12:27 +01:00
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
|
|
|
# See file CREDITS for list of people who contributed to this
|
|
|
|
# project.
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License as
|
|
|
|
# published by the Free Software Foundation; either version 2 of
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
2007-04-05 18:31:18 +08:00
|
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
|
|
|
|
# MA 02110-1301 USA
|
2006-03-12 02:12:27 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/config.mk
|
|
|
|
|
2008-02-19 00:54:20 -05:00
|
|
|
CFLAGS += -DBFIN_BOARD_NAME='"$(BOARD)"'
|
|
|
|
|
2007-03-12 01:42:06 +08:00
|
|
|
LIB = $(obj)lib$(ARCH).a
|
2006-03-12 02:12:27 +01:00
|
|
|
|
2008-02-27 11:00:47 +01:00
|
|
|
SOBJS-y += memcmp.o
|
|
|
|
SOBJS-y += memcpy.o
|
|
|
|
SOBJS-y += memmove.o
|
|
|
|
SOBJS-y += memset.o
|
|
|
|
|
|
|
|
COBJS-y += board.o
|
2008-08-07 15:27:52 -04:00
|
|
|
COBJS-y += boot.o
|
2008-02-27 11:00:47 +01:00
|
|
|
COBJS-y += cache.o
|
2008-10-24 22:48:47 -04:00
|
|
|
COBJS-y += clocks.o
|
2008-10-06 03:31:52 -04:00
|
|
|
COBJS-$(CONFIG_CMD_CACHE_DUMP) += cmd_cache_dump.o
|
2008-02-27 11:00:47 +01:00
|
|
|
COBJS-y += muldi3.o
|
2008-10-18 05:33:51 -04:00
|
|
|
COBJS-$(CONFIG_POST) += post.o tests.o
|
2008-03-30 15:46:13 -04:00
|
|
|
COBJS-y += string.o
|
2008-02-27 11:00:47 +01:00
|
|
|
|
2008-05-20 16:00:29 +02:00
|
|
|
SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
|
2008-02-27 11:00:47 +01:00
|
|
|
OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
|
2007-03-12 01:42:06 +08:00
|
|
|
|
2009-06-14 06:29:07 -04:00
|
|
|
$(LIB): $(obj).depend $(OBJS) $(obj)u-boot.lds
|
2007-03-12 01:42:06 +08:00
|
|
|
$(AR) $(ARFLAGS) $@ $(OBJS)
|
2006-03-12 02:12:27 +01:00
|
|
|
|
2009-06-14 06:29:07 -04:00
|
|
|
$(obj)u-boot.lds: u-boot.lds.S
|
|
|
|
$(CPP) $(CPPFLAGS) -D__ASSEMBLY__ -P $^ > $@
|
|
|
|
|
2006-03-12 02:12:27 +01:00
|
|
|
#########################################################################
|
|
|
|
|
2007-03-12 01:42:06 +08:00
|
|
|
# defines $(obj).depend target
|
|
|
|
include $(SRCTREE)/rules.mk
|
2006-03-12 02:12:27 +01:00
|
|
|
|
2007-03-12 01:42:06 +08:00
|
|
|
sinclude $(obj).depend
|
2006-03-12 02:12:27 +01:00
|
|
|
|
|
|
|
#########################################################################
|