kbuild: add .SECONDARY special target to scripts/Kbuild.include
[oweals/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_SMC911X)            += smc911x_eeprom
9 extra-$(CONFIG_SPI_FLASH_ATMEL)    += atmel_df_pow2
10 extra-$(CONFIG_PPC)                += sched
11
12 #
13 # Some versions of make do not handle trailing white spaces properly;
14 # leading to build failures. The problem was found with GNU Make 3.80.
15 # Using 'strip' as a workaround for the problem.
16 #
17 ELF := $(strip $(extra-y))
18
19 extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
20 clean-files  := *.srec *.bin
21
22 COBJS   := $(ELF:=.o)
23
24 LIB     = $(obj)/libstubs.o
25
26 LIBOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
27 LIBOBJS-y += stubs.o
28
29 targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y)
30
31 LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y))
32 ELF     := $(addprefix $(obj)/,$(ELF))
33
34 # For PowerPC there's no need to compile standalone applications as a
35 # relocatable executable.  The relocation data is not needed, and
36 # also causes the entry point of the standalone application to be
37 # inconsistent.
38 ifeq ($(CONFIG_PPC),y)
39 PLATFORM_CPPFLAGS := $(filter-out $(RELFLAGS),$(PLATFORM_CPPFLAGS))
40 endif
41
42 # We don't want gcc reordering functions if possible.  This ensures that an
43 # application's entry point will be the first function in the application's
44 # source file.
45 ccflags-y += $(call cc-option,-fno-toplevel-reorder)
46
47 LDFLAGS_STANDALONE      += -Ttext $(CONFIG_STANDALONE_LOAD_ADDR)
48
49 #########################################################################
50
51 quiet_cmd_link_lib = LD      $@
52       cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^)
53
54 $(LIB): $(LIBOBJS) FORCE
55         $(call if_changed,link_lib)
56
57 quiet_cmd_link_elf = LD      $@
58       cmd_link_elf = $(LD) $(LDFLAGS) $(LDFLAGS_STANDALONE) -g  \
59                      -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) $(PLATFORM_LIBGCC)
60
61 $(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE
62         $(call if_changed,link_elf)
63
64 $(obj)/%.srec: OBJCOPYFLAGS += -O srec
65 $(obj)/%.srec: $(obj)/% FORCE
66         $(call if_changed,objcopy)
67
68 $(obj)/%.bin: OBJCOPYFLAGS += -O binary
69 $(obj)/%.bin: $(obj)/% FORCE
70         $(call if_changed,objcopy)
71
72 # some files can only build in ARM or THUMB2, not THUMB1
73
74 ifdef CONFIG_SYS_THUMB_BUILD
75 ifndef CONFIG_HAS_THUMB2
76
77 CFLAGS_stubs.o := -marm
78
79 endif
80 endif