wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2002-2006 |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
| 5 | # See file CREDITS for list of people who contributed to this |
| 6 | # project. |
| 7 | # |
| 8 | # This program is free software; you can redistribute it and/or |
| 9 | # modify it under the terms of the GNU General Public License as |
| 10 | # published by the Free Software Foundation; either version 2 of |
| 11 | # the License, or (at your option) any later version. |
| 12 | # |
| 13 | # This program is distributed in the hope that it will be useful, |
| 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | # GNU General Public License for more details. |
| 17 | # |
| 18 | # You should have received a copy of the GNU General Public License |
| 19 | # along with this program; if not, write to the Free Software |
| 20 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | # MA 02111-1307 USA |
| 22 | # |
| 23 | |
| 24 | include $(TOPDIR)/config.mk |
| 25 | |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 26 | LIB = $(obj)lib$(ARCH).o |
| 27 | LIBGCC = $(obj)libgcc.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 28 | |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 29 | GLSOBJS += _ashldi3.o |
| 30 | GLSOBJS += _ashrdi3.o |
| 31 | GLSOBJS += _divsi3.o |
Heiko Schocher | 8ffa25f | 2009-07-23 13:27:04 +0200 | [diff] [blame] | 32 | GLSOBJS += _lshrdi3.o |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 33 | GLSOBJS += _modsi3.o |
| 34 | GLSOBJS += _udivsi3.o |
| 35 | GLSOBJS += _umodsi3.o |
| 36 | |
| 37 | GLCOBJS += div0.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 38 | |
Allen Martin | ea74c93 | 2012-08-31 08:30:13 +0000 | [diff] [blame] | 39 | ifndef CONFIG_SPL_BUILD |
Marian Balakowicz | 699ffe5 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 40 | COBJS-y += board.o |
| 41 | COBJS-y += bootm.o |
Aneesh V | 686a075 | 2011-06-16 23:30:51 +0000 | [diff] [blame] | 42 | COBJS-$(CONFIG_SYS_L2_PL310) += cache-pl310.o |
Marian Balakowicz | 699ffe5 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 43 | COBJS-y += interrupts.o |
Jean-Christophe PLAGNIOL-VILLARD | 189b87a | 2009-04-05 13:08:03 +0200 | [diff] [blame] | 44 | COBJS-y += reset.o |
Matthias Weisser | 93416c1 | 2011-03-10 21:36:32 +0000 | [diff] [blame] | 45 | SOBJS-$(CONFIG_USE_ARCH_MEMSET) += memset.o |
| 46 | SOBJS-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o |
Tom Rini | 31dfba4 | 2012-08-22 15:31:05 -0700 | [diff] [blame^] | 47 | else |
| 48 | COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o |
Aneesh V | 55fc5b6 | 2011-07-13 05:11:06 +0000 | [diff] [blame] | 49 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 50 | |
Stefano Babic | 84fb0dd | 2012-03-15 04:01:41 +0000 | [diff] [blame] | 51 | COBJS-y += cache.o |
| 52 | COBJS-y += cache-cp15.o |
| 53 | |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 54 | SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ |
| 55 | $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
Marian Balakowicz | 699ffe5 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 56 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 57 | LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \ |
| 58 | $(addprefix $(obj),$(GLCOBJS)) |
| 59 | |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 60 | # Always build libarm.o |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 61 | TARGETS := $(LIB) |
| 62 | |
| 63 | # Build private libgcc only when asked for |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 64 | ifdef USE_PRIVATE_LIBGCC |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 65 | TARGETS += $(LIBGCC) |
| 66 | endif |
| 67 | |
| 68 | # For EABI conformant tool chains, provide eabi_compat() |
| 69 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
| 70 | TARGETS += $(obj)eabi_compat.o |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 71 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 72 | |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 73 | all: $(TARGETS) |
| 74 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 75 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 76 | $(call cmd_link_o_target, $(OBJS)) |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 77 | |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 78 | $(LIBGCC): $(obj).depend $(LGOBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 79 | $(call cmd_link_o_target, $(LGOBJS)) |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 80 | |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 81 | ######################################################################### |
| 82 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 83 | # defines $(obj).depend target |
| 84 | include $(SRCTREE)/rules.mk |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 85 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 86 | sinclude $(obj).depend |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 87 | |
| 88 | ######################################################################### |