wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 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 | 6d8962e | 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 | |
Aneesh V | 05bad4a | 2011-07-13 05:11:06 +0000 | [diff] [blame] | 29 | ifndef CONFIG_SPL_BUILD |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 30 | GLSOBJS += _ashldi3.o |
| 31 | GLSOBJS += _ashrdi3.o |
| 32 | GLSOBJS += _divsi3.o |
Heiko Schocher | deec15b | 2009-07-23 13:27:04 +0200 | [diff] [blame] | 33 | GLSOBJS += _lshrdi3.o |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 34 | GLSOBJS += _modsi3.o |
| 35 | GLSOBJS += _udivsi3.o |
| 36 | GLSOBJS += _umodsi3.o |
| 37 | |
| 38 | GLCOBJS += div0.o |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 39 | |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 40 | COBJS-y += board.o |
| 41 | COBJS-y += bootm.o |
| 42 | COBJS-y += cache.o |
Jean-Christophe PLAGNIOL-VILLARD | b3acb6c | 2009-04-05 13:06:31 +0200 | [diff] [blame] | 43 | COBJS-y += cache-cp15.o |
Aneesh V | 93bc219 | 2011-06-16 23:30:51 +0000 | [diff] [blame] | 44 | COBJS-$(CONFIG_SYS_L2_PL310) += cache-pl310.o |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 45 | COBJS-y += interrupts.o |
Jean-Christophe PLAGNIOL-VILLARD | ab29823 | 2009-04-05 13:08:03 +0200 | [diff] [blame] | 46 | COBJS-y += reset.o |
Matthias Weisser | d8834a1 | 2011-03-10 21:36:32 +0000 | [diff] [blame] | 47 | SOBJS-$(CONFIG_USE_ARCH_MEMSET) += memset.o |
| 48 | SOBJS-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o |
Aneesh V | 05bad4a | 2011-07-13 05:11:06 +0000 | [diff] [blame] | 49 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 50 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 51 | SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ |
| 52 | $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 53 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 54 | LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \ |
| 55 | $(addprefix $(obj),$(GLCOBJS)) |
| 56 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 57 | # Always build libarm.o |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 58 | TARGETS := $(LIB) |
| 59 | |
| 60 | # Build private libgcc only when asked for |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 61 | ifdef USE_PRIVATE_LIBGCC |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 62 | TARGETS += $(LIBGCC) |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 63 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 64 | |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 65 | # For EABI conformant tool chains, provide eabi_compat() |
| 66 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
| 67 | TARGETS += $(obj)eabi_compat.o |
| 68 | endif |
| 69 | |
| 70 | all: $(TARGETS) |
| 71 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 72 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 73 | $(call cmd_link_o_target, $(OBJS)) |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 74 | |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 75 | $(LIBGCC): $(obj).depend $(LGOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 76 | $(call cmd_link_o_target, $(LGOBJS)) |
Wolfgang Denk | 52b1bf2 | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 77 | |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 78 | ######################################################################### |
| 79 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 80 | # defines $(obj).depend target |
| 81 | include $(SRCTREE)/rules.mk |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 82 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 83 | sinclude $(obj).depend |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 84 | |
| 85 | ######################################################################### |