blob: cad440954e1e2d8e6e6e8b4aaf73c9f00670b855 [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
13extra-$(CONFIG_8xx) += test_burst timer
14extra-$(CONFIG_8260) += mem_to_mem_idma2intr
15extra-$(CONFIG_PPC) += sched
Mike Frysinger0f4964a2009-07-23 16:37:03 -040016
Sanjeev Premi68db2352009-11-09 22:43:00 +053017#
18# Some versions of make do not handle trailing white spaces properly;
19# leading to build failures. The problem was found with GNU Make 3.80.
20# Using 'strip' as a workaround for the problem.
21#
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090022ELF := $(strip $(extra-y))
Sanjeev Premi68db2352009-11-09 22:43:00 +053023
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090024extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
25clean-files := $(extra-) $(addsuffix .srec,$(extra-)) $(addsuffix .bin,$(extra-))
26
wdenke339a7a2005-05-07 19:06:32 +000027
Mike Frysinger659c60d2009-09-04 19:54:45 -040028COBJS := $(ELF:=.o)
wdenkabda5ca2003-05-31 18:35:21 +000029
Sebastien Carliera8d426f2010-11-05 15:48:07 +010030LIB = $(obj)libstubs.o
wdenkbd1575f2003-10-14 19:43:55 +000031
Masahiro Yamada71db7542013-11-28 12:09:59 +090032LIBAOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
33LIBAOBJS-$(CONFIG_8xx) += test_burst_lib.o
34LIBAOBJS := $(LIBAOBJS-y)
wdenk717b5aa2002-04-27 11:09:31 +000035
Mike Frysinger659c60d2009-09-04 19:54:45 -040036LIBCOBJS = stubs.o
Marian Balakowiczd62379d2006-09-01 19:49:50 +020037
38LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
39
Mike Frysinger659c60d2009-09-04 19:54:45 -040040SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
Marian Balakowiczd62379d2006-09-01 19:49:50 +020041OBJS := $(addprefix $(obj),$(COBJS))
Wolfgang Denk29be6222006-10-24 13:55:18 +020042ELF := $(addprefix $(obj),$(ELF))
wdenk717b5aa2002-04-27 11:09:31 +000043
Tom Rinic98feda2013-09-10 09:51:44 -040044gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
wdenk710e3502003-08-29 20:57:53 +000045
Peter Tyser29764ee2010-06-15 21:48:25 +020046# For PowerPC there's no need to compile standalone applications as a
47# relocatable executable. The relocation data is not needed, and
48# also causes the entry point of the standalone application to be
49# inconsistent.
50ifeq ($(ARCH),powerpc)
51AFLAGS := $(filter-out $(RELFLAGS),$(AFLAGS))
52CFLAGS := $(filter-out $(RELFLAGS),$(CFLAGS))
53CPPFLAGS := $(filter-out $(RELFLAGS),$(CPPFLAGS))
54endif
55
Peter Tyser4bbc0822010-09-12 17:38:49 -050056# We don't want gcc reordering functions if possible. This ensures that an
57# application's entry point will be the first function in the application's
58# source file.
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090059CFLAGS += $(call cc-option,-fno-toplevel-reorder)
wdenk717b5aa2002-04-27 11:09:31 +000060
61#########################################################################
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090062$(LIB): $(LIBOBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010063 $(call cmd_link_o_target, $(LIBOBJS))
wdenk717b5aa2002-04-27 11:09:31 +000064
Wolfgang Denk29be6222006-10-24 13:55:18 +020065$(ELF):
Marian Balakowiczd62379d2006-09-01 19:49:50 +020066$(obj)%: $(obj)%.o $(LIB)
Marek Vasut3ee93d32012-03-06 00:44:22 +010067 $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
Mike Frysingera13ad8e2008-02-04 19:26:55 -050068 -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
Tom Rinic98feda2013-09-10 09:51:44 -040069 -L$(gcclibdir) -lgcc
Wolfgang Denk29be6222006-10-24 13:55:18 +020070
Marian Balakowiczd62379d2006-09-01 19:49:50 +020071$(obj)%.srec: $(obj)%
72 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +000073
Marian Balakowiczd62379d2006-09-01 19:49:50 +020074$(obj)%.bin: $(obj)%
75 $(OBJCOPY) -O binary $< $@ 2>/dev/null