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 | |
Albert ARIBAUD | facdae5 | 2013-01-08 10:18:02 +0000 | [diff] [blame] | 39 | SOBJS-y += crt0.o |
| 40 | |
Allen Martin | ea74c93 | 2012-08-31 08:30:13 +0000 | [diff] [blame] | 41 | ifndef CONFIG_SPL_BUILD |
Albert ARIBAUD | 9580b32 | 2013-05-19 01:48:15 +0000 | [diff] [blame] | 42 | SOBJS-y += relocate.o |
Simon Glass | 97bbf18 | 2013-03-11 06:49:57 +0000 | [diff] [blame] | 43 | ifndef CONFIG_SYS_GENERIC_BOARD |
Marian Balakowicz | 699ffe5 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 44 | COBJS-y += board.o |
Simon Glass | 97bbf18 | 2013-03-11 06:49:57 +0000 | [diff] [blame] | 45 | endif |
Albert ARIBAUD | 800ea3e | 2013-06-11 14:17:32 +0200 | [diff] [blame] | 46 | COBJS-y += sections.o |
Simon Glass | 97bbf18 | 2013-03-11 06:49:57 +0000 | [diff] [blame] | 47 | |
Simon Glass | 653909f | 2013-05-08 08:06:03 +0000 | [diff] [blame] | 48 | COBJS-$(CONFIG_OF_LIBFDT) += bootm-fdt.o |
Dirk Eibach | d2df811 | 2013-06-26 15:55:16 +0200 | [diff] [blame^] | 49 | COBJS-$(CONFIG_CMD_BOOTM) += bootm.o |
Aneesh V | 686a075 | 2011-06-16 23:30:51 +0000 | [diff] [blame] | 50 | COBJS-$(CONFIG_SYS_L2_PL310) += cache-pl310.o |
Matthias Weisser | 93416c1 | 2011-03-10 21:36:32 +0000 | [diff] [blame] | 51 | SOBJS-$(CONFIG_USE_ARCH_MEMSET) += memset.o |
| 52 | SOBJS-$(CONFIG_USE_ARCH_MEMCPY) += memcpy.o |
Tom Rini | 31dfba4 | 2012-08-22 15:31:05 -0700 | [diff] [blame] | 53 | else |
| 54 | COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o |
Aneesh V | 55fc5b6 | 2011-07-13 05:11:06 +0000 | [diff] [blame] | 55 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 56 | |
Tom Wai-Hong Tam | f1ffb6c | 2012-11-30 13:01:21 +0000 | [diff] [blame] | 57 | COBJS-y += interrupts.o |
| 58 | COBJS-y += reset.o |
| 59 | |
Stefano Babic | 84fb0dd | 2012-03-15 04:01:41 +0000 | [diff] [blame] | 60 | COBJS-y += cache.o |
| 61 | COBJS-y += cache-cp15.o |
| 62 | |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 63 | SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ |
| 64 | $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
Marian Balakowicz | 699ffe5 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 65 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 66 | LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \ |
| 67 | $(addprefix $(obj),$(GLCOBJS)) |
| 68 | |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 69 | # Always build libarm.o |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 70 | TARGETS := $(LIB) |
| 71 | |
| 72 | # Build private libgcc only when asked for |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 73 | ifdef USE_PRIVATE_LIBGCC |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 74 | TARGETS += $(LIBGCC) |
| 75 | endif |
| 76 | |
| 77 | # For EABI conformant tool chains, provide eabi_compat() |
| 78 | ifneq (,$(findstring -mabi=aapcs-linux,$(PLATFORM_CPPFLAGS))) |
| 79 | TARGETS += $(obj)eabi_compat.o |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 80 | endif |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 81 | |
Wolfgang Denk | d47f486 | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 82 | all: $(TARGETS) |
| 83 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 84 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 85 | $(call cmd_link_o_target, $(OBJS)) |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 86 | |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 87 | $(LIBGCC): $(obj).depend $(LGOBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 88 | $(call cmd_link_o_target, $(LGOBJS)) |
Wolfgang Denk | c73f44d | 2009-07-23 13:15:59 +0200 | [diff] [blame] | 89 | |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 90 | ######################################################################### |
| 91 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 92 | # defines $(obj).depend target |
| 93 | include $(SRCTREE)/rules.mk |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 94 | |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 95 | sinclude $(obj).depend |
wdenk | f47713f | 2002-09-08 19:49:36 +0000 | [diff] [blame] | 96 | |
| 97 | ######################################################################### |