Merge https://gitlab.denx.de/u-boot/custodians/u-boot-spi into next
[platform/kernel/u-boot.git] / examples / standalone / Makefile
1 # SPDX-License-Identifier: GPL-2.0+
2 #
3 # (C) Copyright 2000-2006
4 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5
6 extra-y        := hello_world
7 extra-$(CONFIG_SMC91111)           += smc91111_eeprom
8 extra-$(CONFIG_SPI_FLASH_ATMEL)    += atmel_df_pow2
9 extra-$(CONFIG_PPC)                += sched
10
11 #
12 # Some versions of make do not handle trailing white spaces properly;
13 # leading to build failures. The problem was found with GNU Make 3.80.
14 # Using 'strip' as a workaround for the problem.
15 #
16 ELF := $(strip $(extra-y))
17
18 extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
19 clean-files  := *.srec *.bin
20
21 COBJS   := $(ELF:=.o)
22
23 LIB     = $(obj)/libstubs.o
24
25 LIBOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
26 LIBOBJS-y += stubs.o
27
28 targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y)
29
30 LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y))
31 ELF     := $(addprefix $(obj)/,$(ELF))
32
33 # For PowerPC there's no need to compile standalone applications as a
34 # relocatable executable.  The relocation data is not needed, and
35 # also causes the entry point of the standalone application to be
36 # inconsistent.
37 ifeq ($(CONFIG_PPC),y)
38 PLATFORM_CPPFLAGS := $(filter-out $(RELFLAGS),$(PLATFORM_CPPFLAGS))
39 endif
40
41 # We don't want gcc reordering functions if possible.  This ensures that an
42 # application's entry point will be the first function in the application's
43 # source file.
44 ccflags-y += $(call cc-option,-fno-toplevel-reorder)
45
46 LDFLAGS_STANDALONE      += -Ttext $(CONFIG_STANDALONE_LOAD_ADDR)
47
48 #########################################################################
49
50 quiet_cmd_link_lib = LD      $@
51       cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^)
52
53 $(LIB): $(LIBOBJS) FORCE
54         $(call if_changed,link_lib)
55
56 quiet_cmd_link_elf = LD      $@
57       cmd_link_elf = $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_STANDALONE) -g  \
58                      -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) $(PLATFORM_LIBGCC)
59
60 $(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE
61         $(call if_changed,link_elf)
62
63 $(obj)/%.srec: OBJCOPYFLAGS += -O srec
64 $(obj)/%.srec: $(obj)/% FORCE
65         $(call if_changed,objcopy)
66
67 $(obj)/%.bin: OBJCOPYFLAGS += -O binary
68 $(obj)/%.bin: $(obj)/% FORCE
69         $(call if_changed,objcopy)
70
71 # some files can only build in ARM or THUMB2, not THUMB1
72
73 ifdef CONFIG_SYS_THUMB_BUILD
74 ifndef CONFIG_HAS_THUMB2
75
76 CFLAGS_stubs.o := -marm
77
78 endif
79 endif