blob: 1f8d70ce8a73f78015a0b8ce96bde89d7ec50485 [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 Yamadaa6d77562014-02-04 17:24:23 +09008ifdef FTRACE
9CFLAGS += -finstrument-functions -DFTRACE
10endif
11
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090012extra-y := hello_world
13extra-$(CONFIG_SMC91111) += smc91111_eeprom
14extra-$(CONFIG_SMC911X) += smc911x_eeprom
15extra-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2
16extra-$(CONFIG_MPC5xxx) += interrupt
17extra-$(CONFIG_8xx) += test_burst timer
18extra-$(CONFIG_8260) += mem_to_mem_idma2intr
19extra-$(CONFIG_PPC) += sched
Mike Frysinger0f4964a2009-07-23 16:37:03 -040020
Sanjeev Premi68db2352009-11-09 22:43:00 +053021#
22# Some versions of make do not handle trailing white spaces properly;
23# leading to build failures. The problem was found with GNU Make 3.80.
24# Using 'strip' as a workaround for the problem.
25#
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090026ELF := $(strip $(extra-y))
Sanjeev Premi68db2352009-11-09 22:43:00 +053027
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090028extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
29clean-files := $(extra-) $(addsuffix .srec,$(extra-)) $(addsuffix .bin,$(extra-))
30
wdenke339a7a2005-05-07 19:06:32 +000031
Mike Frysinger659c60d2009-09-04 19:54:45 -040032COBJS := $(ELF:=.o)
wdenkabda5ca2003-05-31 18:35:21 +000033
Sebastien Carliera8d426f2010-11-05 15:48:07 +010034LIB = $(obj)libstubs.o
wdenkbd1575f2003-10-14 19:43:55 +000035
Masahiro Yamada71db7542013-11-28 12:09:59 +090036LIBAOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
37LIBAOBJS-$(CONFIG_8xx) += test_burst_lib.o
38LIBAOBJS := $(LIBAOBJS-y)
wdenk717b5aa2002-04-27 11:09:31 +000039
Mike Frysinger659c60d2009-09-04 19:54:45 -040040LIBCOBJS = stubs.o
Marian Balakowiczd62379d2006-09-01 19:49:50 +020041
42LIBOBJS = $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))
43
Mike Frysinger659c60d2009-09-04 19:54:45 -040044SRCS := $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(LIBAOBJS:.o=.S)
Marian Balakowiczd62379d2006-09-01 19:49:50 +020045OBJS := $(addprefix $(obj),$(COBJS))
Wolfgang Denk29be6222006-10-24 13:55:18 +020046ELF := $(addprefix $(obj),$(ELF))
wdenk717b5aa2002-04-27 11:09:31 +000047
Tom Rinic98feda2013-09-10 09:51:44 -040048gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)
wdenk710e3502003-08-29 20:57:53 +000049
Peter Tyser29764ee2010-06-15 21:48:25 +020050# For PowerPC there's no need to compile standalone applications as a
51# relocatable executable. The relocation data is not needed, and
52# also causes the entry point of the standalone application to be
53# inconsistent.
54ifeq ($(ARCH),powerpc)
55AFLAGS := $(filter-out $(RELFLAGS),$(AFLAGS))
56CFLAGS := $(filter-out $(RELFLAGS),$(CFLAGS))
57CPPFLAGS := $(filter-out $(RELFLAGS),$(CPPFLAGS))
58endif
59
Peter Tyser4bbc0822010-09-12 17:38:49 -050060# We don't want gcc reordering functions if possible. This ensures that an
61# application's entry point will be the first function in the application's
62# source file.
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090063CFLAGS += $(call cc-option,-fno-toplevel-reorder)
wdenk717b5aa2002-04-27 11:09:31 +000064
65#########################################################################
Masahiro Yamada6b05dae2014-02-04 17:24:12 +090066$(LIB): $(LIBOBJS)
Sebastien Carliera8d426f2010-11-05 15:48:07 +010067 $(call cmd_link_o_target, $(LIBOBJS))
wdenk717b5aa2002-04-27 11:09:31 +000068
Wolfgang Denk29be6222006-10-24 13:55:18 +020069$(ELF):
Marian Balakowiczd62379d2006-09-01 19:49:50 +020070$(obj)%: $(obj)%.o $(LIB)
Marek Vasut3ee93d32012-03-06 00:44:22 +010071 $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
Mike Frysingera13ad8e2008-02-04 19:26:55 -050072 -o $@ -e $(SYM_PREFIX)$(notdir $(<:.o=)) $< $(LIB) \
Tom Rinic98feda2013-09-10 09:51:44 -040073 -L$(gcclibdir) -lgcc
Wolfgang Denk29be6222006-10-24 13:55:18 +020074
Marian Balakowiczd62379d2006-09-01 19:49:50 +020075$(obj)%.srec: $(obj)%
76 $(OBJCOPY) -O srec $< $@ 2>/dev/null
wdenk717b5aa2002-04-27 11:09:31 +000077
Marian Balakowiczd62379d2006-09-01 19:49:50 +020078$(obj)%.bin: $(obj)%
79 $(OBJCOPY) -O binary $< $@ 2>/dev/null