wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/config.mk |
| 9 | |
Kyle Moffett | 01baa05 | 2011-02-23 06:40:38 +0000 | [diff] [blame] | 10 | ## Build a couple of necessary functions into a private libgcc |
| 11 | LIBGCC = $(obj)libgcc.o |
| 12 | GLSOBJS += _ashldi3.o |
| 13 | GLSOBJS += _ashrdi3.o |
| 14 | GLSOBJS += _lshrdi3.o |
| 15 | LGOBJS := $(addprefix $(obj),$(GLSOBJS)) \ |
| 16 | $(addprefix $(obj),$(GLCOBJS)) |
| 17 | |
| 18 | ## But only build it if the user asked for it |
| 19 | ifdef USE_PRIVATE_LIBGCC |
| 20 | TARGETS += $(LIBGCC) |
| 21 | endif |
| 22 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 23 | LIB = $(obj)lib$(ARCH).o |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 24 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 25 | MINIMAL= |
| 26 | |
| 27 | ifdef CONFIG_SPL_BUILD |
| 28 | ifdef CONFIG_SPL_INIT_MINIMAL |
| 29 | MINIMAL=y |
| 30 | endif |
| 31 | endif |
| 32 | |
| 33 | ifdef MINIMAL |
Scott Wood | 06f60ae | 2012-12-06 13:33:17 +0000 | [diff] [blame] | 34 | COBJS-y += cache.o time.o |
| 35 | SOBJS-y += ticks.o |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 36 | else |
| 37 | |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 38 | SOBJS-y += ppcstring.o |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 39 | |
| 40 | SOBJS-y += ppccache.o |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 41 | SOBJS-y += ticks.o |
Joakim Tjernlund | fc4e188 | 2010-01-19 14:41:55 +0100 | [diff] [blame] | 42 | SOBJS-y += reloc.o |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 43 | |
Peter Tyser | 4bbfd3e | 2010-10-07 22:32:48 -0500 | [diff] [blame] | 44 | COBJS-$(CONFIG_BAT_RW) += bat_rw.o |
Stefan Roese | 083f2e0 | 2012-08-16 17:53:18 +0200 | [diff] [blame] | 45 | ifndef CONFIG_SPL_BUILD |
Simon Glass | 660c60c | 2013-03-11 06:50:01 +0000 | [diff] [blame] | 46 | ifndef CONFIG_SYS_GENERIC_BOARD |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 47 | COBJS-y += board.o |
Stefan Roese | 083f2e0 | 2012-08-16 17:53:18 +0200 | [diff] [blame] | 48 | endif |
Simon Glass | 660c60c | 2013-03-11 06:50:01 +0000 | [diff] [blame] | 49 | endif |
Dirk Eibach | b8eee43 | 2013-06-26 15:55:16 +0200 | [diff] [blame] | 50 | COBJS-$(CONFIG_CMD_BOOTM) += bootm.o |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 51 | COBJS-y += cache.o |
| 52 | COBJS-y += extable.o |
| 53 | COBJS-y += interrupts.o |
Peter Tyser | 425d3b6 | 2009-11-03 23:31:07 -0600 | [diff] [blame] | 54 | COBJS-$(CONFIG_CMD_KGDB) += kgdb.o |
Pavel Herrmann | 8d1165e11a | 2012-10-09 07:01:56 +0000 | [diff] [blame] | 55 | COBJS-${CONFIG_CMD_IDE} += ide.o |
Marian Balakowicz | 823afe7 | 2008-02-27 11:00:47 +0100 | [diff] [blame] | 56 | COBJS-y += time.o |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 57 | |
Stefan Roese | 083f2e0 | 2012-08-16 17:53:18 +0200 | [diff] [blame] | 58 | # Don't include the MPC5xxx special memcpy into the |
| 59 | # SPL U-Boot image. memcpy is used in the SPL NOR |
| 60 | # flash driver. And we need the real, fast memcpy |
| 61 | # here. We have no problems with unaligned access. |
| 62 | ifndef CONFIG_SPL_BUILD |
Wolfgang Denk | 4ccd551 | 2010-06-29 01:33:35 +0200 | [diff] [blame] | 63 | # Workaround for local bus unaligned access problems |
| 64 | # on MPC512x and MPC5200 |
| 65 | ifdef CONFIG_MPC512X |
| 66 | $(obj)ppcstring.o: AFLAGS += -Dmemcpy=__memcpy |
| 67 | COBJS-y += memcpy_mpc5200.o |
| 68 | endif |
Wolfgang Denk | 460c2ce | 2010-06-21 22:29:59 +0200 | [diff] [blame] | 69 | ifdef CONFIG_MPC5200 |
| 70 | $(obj)ppcstring.o: AFLAGS += -Dmemcpy=__memcpy |
Wolfgang Denk | 4ccd551 | 2010-06-29 01:33:35 +0200 | [diff] [blame] | 71 | COBJS-y += memcpy_mpc5200.o |
Wolfgang Denk | 460c2ce | 2010-06-21 22:29:59 +0200 | [diff] [blame] | 72 | endif |
Stefan Roese | 083f2e0 | 2012-08-16 17:53:18 +0200 | [diff] [blame] | 73 | endif |
Wolfgang Denk | 460c2ce | 2010-06-21 22:29:59 +0200 | [diff] [blame] | 74 | |
Scott Wood | 4b91972 | 2012-09-20 16:35:21 -0500 | [diff] [blame] | 75 | endif # not minimal |
| 76 | |
Stefan Roese | ea8256f | 2012-08-23 08:34:21 +0200 | [diff] [blame] | 77 | ifdef CONFIG_SPL_BUILD |
| 78 | COBJS-$(CONFIG_SPL_FRAMEWORK) += spl.o |
| 79 | endif |
| 80 | |
Wolfgang Denk | 4ccd551 | 2010-06-29 01:33:35 +0200 | [diff] [blame] | 81 | COBJS += $(sort $(COBJS-y)) |
| 82 | |
Kyle Moffett | 01baa05 | 2011-02-23 06:40:38 +0000 | [diff] [blame] | 83 | SRCS := $(GLSOBJS:.o=.S) $(GLCOBJS:.o=.c) \ |
| 84 | $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
Wolfgang Denk | 4ccd551 | 2010-06-29 01:33:35 +0200 | [diff] [blame] | 85 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
| 86 | |
Kyle Moffett | 01baa05 | 2011-02-23 06:40:38 +0000 | [diff] [blame] | 87 | TARGETS += $(LIB) |
| 88 | |
| 89 | all: $(TARGETS) |
| 90 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 91 | $(LIB): $(obj).depend $(OBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 92 | $(call cmd_link_o_target, $(OBJS)) |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 93 | |
Kyle Moffett | 01baa05 | 2011-02-23 06:40:38 +0000 | [diff] [blame] | 94 | $(LIBGCC): $(obj).depend $(LGOBJS) |
| 95 | $(call cmd_link_o_target, $(LGOBJS)) |
| 96 | |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 97 | ######################################################################### |
| 98 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 99 | # defines $(obj).depend target |
| 100 | include $(SRCTREE)/rules.mk |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 101 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 102 | sinclude $(obj).depend |
wdenk | 0c8959d | 2002-08-14 08:04:29 +0000 | [diff] [blame] | 103 | |
| 104 | ######################################################################### |