blob: 4c25f6f48f9e4c018c00dc15f4edeaa820d3d0f2 [file] [log] [blame]
wdenk717b5aa2002-04-27 11:09:31 +00001#
Marian Balakowiczd62379d2006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
wdenk717b5aa2002-04-27 11:09:31 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005# SPDX-License-Identifier: GPL-2.0+
wdenk717b5aa2002-04-27 11:09:31 +00006#
7
Masahiro Yamada6b05dae2014-02-04 17:24:12 +09008extra-y := hello_world
9extra-$(CONFIG_SMC91111) += smc91111_eeprom
10extra-$(CONFIG_SMC911X) += smc911x_eeprom
11extra-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2
12extra-$(CONFIG_MPC5xxx) += interrupt
Masahiro Yamada5a2bf982014-03-05 17:40:10 +090013extra-$(CONFIG_MPC8260) += mem_to_mem_idma2intr
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090014extra-$(CONFIG_PPC) += sched
Mike Frysinger0f4964a2009-07-23 16:37:03 -040015
Sanjeev Premi68db2352009-11-09 22:43:00 +053016#
17# Some versions of make do not handle trailing white spaces properly;
18# leading to build failures. The problem was found with GNU Make 3.80.
19# Using 'strip' as a workaround for the problem.
20#
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090021ELF := $(strip $(extra-y))
Sanjeev Premi68db2352009-11-09 22:43:00 +053022
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090023extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
Masahiro Yamada580a5f12014-09-05 01:56:52 +090024clean-files := *.srec *.bin
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090025
Mike Frysinger659c60d2009-09-04 19:54:45 -040026COBJS := $(ELF:=.o)
wdenkabda5ca2003-05-31 18:35:21 +000027
Masahiro Yamada59f15f22014-02-04 17:24:24 +090028LIB = $(obj)/libstubs.o
wdenkbd1575f2003-10-14 19:43:55 +000029
Masahiro Yamada020a1f22014-02-24 11:12:19 +090030LIBOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
Masahiro Yamada020a1f22014-02-24 11:12:19 +090031LIBOBJS-y += stubs.o
Marian Balakowiczd62379d2006-09-01 19:49:50 +020032
Masahiro Yamada0d68fb12014-02-04 17:24:28 +090033.SECONDARY: $(call objectify,$(COBJS))
Masahiro Yamada020a1f22014-02-24 11:12:19 +090034targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y)
Masahiro Yamada0d68fb12014-02-04 17:24:28 +090035
Masahiro Yamada020a1f22014-02-24 11:12:19 +090036LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y))
Masahiro Yamada59f15f22014-02-04 17:24:24 +090037ELF := $(addprefix $(obj)/,$(ELF))
wdenk717b5aa2002-04-27 11:09:31 +000038
Peter Tyser29764ee2010-06-15 21:48:25 +020039# For PowerPC there's no need to compile standalone applications as a
40# relocatable executable. The relocation data is not needed, and
41# also causes the entry point of the standalone application to be
42# inconsistent.
Masahiro Yamada958fe8f2014-03-05 16:59:40 +090043ifeq ($(CONFIG_PPC),y)
44PLATFORM_CPPFLAGS := $(filter-out $(RELFLAGS),$(PLATFORM_CPPFLAGS))
Peter Tyser29764ee2010-06-15 21:48:25 +020045endif
46
Peter Tyser4bbc0822010-09-12 17:38:49 -050047# We don't want gcc reordering functions if possible. This ensures that an
48# application's entry point will be the first function in the application's
49# source file.
Masahiro Yamada0d68fb12014-02-04 17:24:28 +090050ccflags-y += $(call cc-option,-fno-toplevel-reorder)
wdenk717b5aa2002-04-27 11:09:31 +000051
52#########################################################################
Masahiro Yamada0d68fb12014-02-04 17:24:28 +090053
54quiet_cmd_link_lib = LD $@
55 cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^)
56
57$(LIB): $(LIBOBJS) FORCE
58 $(call if_changed,link_lib)
wdenk717b5aa2002-04-27 11:09:31 +000059
Masahiro Yamada020a1f22014-02-24 11:12:19 +090060quiet_cmd_link_elf = LD $@
61 cmd_link_elf = $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
Alexey Brodkin80bf4162014-05-16 12:54:17 +040062 -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) $(PLATFORM_LIBGCC)
Masahiro Yamada020a1f22014-02-24 11:12:19 +090063
64$(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE
65 $(call if_changed,link_elf)
Wolfgang Denk29be6222006-10-24 13:55:18 +020066
Masahiro Yamada734c3ef2014-02-24 11:12:14 +090067$(obj)/%.srec: OBJCOPYFLAGS := -O srec
68$(obj)/%.srec: $(obj)/% FORCE
69 $(call if_changed,objcopy)
wdenk717b5aa2002-04-27 11:09:31 +000070
Masahiro Yamada734c3ef2014-02-24 11:12:14 +090071$(obj)/%.bin: OBJCOPYFLAGS := -O binary
72$(obj)/%.bin: $(obj)/% FORCE
73 $(call if_changed,objcopy)
Albert ARIBAUDa3823222015-10-23 18:06:40 +020074
75# some files can only build in ARM or THUMB2, not THUMB1
76
77ifdef CONFIG_SYS_THUMB_BUILD
78ifndef CONFIG_HAS_THUMB2
79
80CFLAGS_stubs.o := -marm
81
82endif
83endif