blob: 965f9ea4a591aef9873efb047eef8422e0b24c7b [file] [log] [blame]
wdenk0c8959d2002-08-14 08:04:29 +00001#
Marian Balakowiczd62379d2006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk0c8959d2002-08-14 08:04:29 +00003# 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
24include $(TOPDIR)/config.mk
25
Kyle Moffett78d58de2011-02-23 06:40:38 +000026## Build a couple of necessary functions into a private libgcc
27LIBGCC = $(obj)libgcc.o
28GLSOBJS += _ashldi3.o
29GLSOBJS += _ashrdi3.o
30GLSOBJS += _lshrdi3.o
31LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \
32 $(addprefix $(obj),$(GLCOBJS))
33
34## But only build it if the user asked for it
35ifdef USE_PRIVATE_LIBGCC
36TARGETS += $(LIBGCC)
37endif
38
Sebastien Carliera8d426f2010-11-05 15:48:07 +010039LIB = $(obj)lib$(ARCH).o
wdenk0c8959d2002-08-14 08:04:29 +000040
Marian Balakowicz699ffe52008-02-27 11:00:47 +010041SOBJS-y += ppccache.o
42SOBJS-y += ppcstring.o
43SOBJS-y += ticks.o
Joakim Tjernlund4ff6bc02010-01-19 14:41:55 +010044SOBJS-y += reloc.o
wdenk0c8959d2002-08-14 08:04:29 +000045
Peter Tyser86dee4a2010-10-07 22:32:48 -050046COBJS-$(CONFIG_BAT_RW) += bat_rw.o
Marian Balakowicz699ffe52008-02-27 11:00:47 +010047COBJS-y += board.o
48COBJS-y += bootm.o
49COBJS-y += cache.o
50COBJS-y += extable.o
51COBJS-y += interrupts.o
Peter Tyserda1a4fc2009-11-03 23:31:07 -060052COBJS-$(CONFIG_CMD_KGDB) += kgdb.o
Marian Balakowicz699ffe52008-02-27 11:00:47 +010053COBJS-y += time.o
wdenk0c8959d2002-08-14 08:04:29 +000054
Wolfgang Denk85aa2c42010-06-29 01:33:35 +020055# Workaround for local bus unaligned access problems
56# on MPC512x and MPC5200
57ifdef CONFIG_MPC512X
58$(obj)ppcstring.o: AFLAGS += -Dmemcpy=__memcpy
59COBJS-y += memcpy_mpc5200.o
60endif
Wolfgang Denk16126092010-06-21 22:29:59 +020061ifdef CONFIG_MPC5200
62$(obj)ppcstring.o: AFLAGS += -Dmemcpy=__memcpy
Wolfgang Denk85aa2c42010-06-29 01:33:35 +020063COBJS-y += memcpy_mpc5200.o
Wolfgang Denk16126092010-06-21 22:29:59 +020064endif
65
Wolfgang Denk85aa2c42010-06-29 01:33:35 +020066COBJS += $(sort $(COBJS-y))
67
Kyle Moffett78d58de2011-02-23 06:40:38 +000068SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \
69 $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
Wolfgang Denk85aa2c42010-06-29 01:33:35 +020070OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
71
Kyle Moffett78d58de2011-02-23 06:40:38 +000072TARGETS += $(LIB)
73
74all: $(TARGETS)
75
Marian Balakowiczd62379d2006-09-01 19:49:50 +020076$(LIB): $(obj).depend $(OBJS)
Peter Tyser95728f22009-09-21 11:20:26 -050077 @if ! $(CROSS_COMPILE)readelf -S $(OBJS) | grep -q '\.fixup.*PROGBITS';\
78 then \
79 echo "ERROR: Your compiler doesn't generate .fixup sections!";\
80 echo " Upgrade to a recent toolchain."; \
81 exit 1; \
82 fi;
Sebastien Carliera8d426f2010-11-05 15:48:07 +010083 $(call cmd_link_o_target, $(OBJS))
wdenk0c8959d2002-08-14 08:04:29 +000084
Kyle Moffett78d58de2011-02-23 06:40:38 +000085$(LIBGCC): $(obj).depend $(LGOBJS)
86 $(call cmd_link_o_target, $(LGOBJS))
87
wdenk0c8959d2002-08-14 08:04:29 +000088#########################################################################
89
Marian Balakowiczd62379d2006-09-01 19:49:50 +020090# defines $(obj).depend target
91include $(SRCTREE)/rules.mk
wdenk0c8959d2002-08-14 08:04:29 +000092
Marian Balakowiczd62379d2006-09-01 19:49:50 +020093sinclude $(obj).depend
wdenk0c8959d2002-08-14 08:04:29 +000094
95#########################################################################