wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 6 | # |
| 7 | |
Masahiro Yamada | 6b05dae | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 8 | extra-y := hello_world |
| 9 | extra-$(CONFIG_SMC91111) += smc91111_eeprom |
| 10 | extra-$(CONFIG_SMC911X) += smc911x_eeprom |
| 11 | extra-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2 |
| 12 | extra-$(CONFIG_MPC5xxx) += interrupt |
| 13 | extra-$(CONFIG_8xx) += test_burst timer |
| 14 | extra-$(CONFIG_8260) += mem_to_mem_idma2intr |
| 15 | extra-$(CONFIG_PPC) += sched |
Mike Frysinger | 0f4964a | 2009-07-23 16:37:03 -0400 | [diff] [blame] | 16 | |
Sanjeev Premi | 68db235 | 2009-11-09 22:43:00 +0530 | [diff] [blame] | 17 | # |
| 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 Yamada | 6b05dae | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 22 | ELF := $(strip $(extra-y)) |
Sanjeev Premi | 68db235 | 2009-11-09 22:43:00 +0530 | [diff] [blame] | 23 | |
Masahiro Yamada | 6b05dae | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 24 | extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y)) |
| 25 | clean-files := $(extra-) $(addsuffix .srec,$(extra-)) $(addsuffix .bin,$(extra-)) |
| 26 | |
Mike Frysinger | 659c60d | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 27 | COBJS := $(ELF:=.o) |
wdenk | abda5ca | 2003-05-31 18:35:21 +0000 | [diff] [blame] | 28 | |
Masahiro Yamada | 59f15f2 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 29 | LIB = $(obj)/libstubs.o |
wdenk | bd1575f | 2003-10-14 19:43:55 +0000 | [diff] [blame] | 30 | |
Masahiro Yamada | 020a1f2 | 2014-02-24 11:12:19 +0900 | [diff] [blame^] | 31 | LIBOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o |
| 32 | LIBOBJS-$(CONFIG_8xx) += test_burst_lib.o |
| 33 | LIBOBJS-y += stubs.o |
Marian Balakowicz | d62379d | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 34 | |
Masahiro Yamada | 0d68fb1 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 35 | .SECONDARY: $(call objectify,$(COBJS)) |
Masahiro Yamada | 020a1f2 | 2014-02-24 11:12:19 +0900 | [diff] [blame^] | 36 | targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y) |
Masahiro Yamada | 0d68fb1 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 37 | |
Masahiro Yamada | 020a1f2 | 2014-02-24 11:12:19 +0900 | [diff] [blame^] | 38 | LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y)) |
Masahiro Yamada | 59f15f2 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 39 | ELF := $(addprefix $(obj)/,$(ELF)) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 40 | |
Tom Rini | c98feda | 2013-09-10 09:51:44 -0400 | [diff] [blame] | 41 | gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`) |
wdenk | 710e350 | 2003-08-29 20:57:53 +0000 | [diff] [blame] | 42 | |
Peter Tyser | 29764ee | 2010-06-15 21:48:25 +0200 | [diff] [blame] | 43 | # For PowerPC there's no need to compile standalone applications as a |
| 44 | # relocatable executable. The relocation data is not needed, and |
| 45 | # also causes the entry point of the standalone application to be |
| 46 | # inconsistent. |
| 47 | ifeq ($(ARCH),powerpc) |
Masahiro Yamada | 0d68fb1 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 48 | # FIX ME |
| 49 | CPPFLAGS := $(filter-out $(RELFLAGS), $(CPPFLAGS)) |
Peter Tyser | 29764ee | 2010-06-15 21:48:25 +0200 | [diff] [blame] | 50 | endif |
| 51 | |
Peter Tyser | 4bbc082 | 2010-09-12 17:38:49 -0500 | [diff] [blame] | 52 | # We don't want gcc reordering functions if possible. This ensures that an |
| 53 | # application's entry point will be the first function in the application's |
| 54 | # source file. |
Masahiro Yamada | 0d68fb1 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 55 | ccflags-y += $(call cc-option,-fno-toplevel-reorder) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 56 | |
| 57 | ######################################################################### |
Masahiro Yamada | 0d68fb1 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 58 | |
| 59 | quiet_cmd_link_lib = LD $@ |
| 60 | cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^) |
| 61 | |
| 62 | $(LIB): $(LIBOBJS) FORCE |
| 63 | $(call if_changed,link_lib) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 64 | |
Masahiro Yamada | 020a1f2 | 2014-02-24 11:12:19 +0900 | [diff] [blame^] | 65 | quiet_cmd_link_elf = LD $@ |
| 66 | cmd_link_elf = $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \ |
| 67 | -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) -L$(gcclibdir) -lgcc |
| 68 | |
| 69 | $(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE |
| 70 | $(call if_changed,link_elf) |
Wolfgang Denk | 29be622 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 71 | |
Masahiro Yamada | 734c3ef | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 72 | $(obj)/%.srec: OBJCOPYFLAGS := -O srec |
| 73 | $(obj)/%.srec: $(obj)/% FORCE |
| 74 | $(call if_changed,objcopy) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 75 | |
Masahiro Yamada | 734c3ef | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 76 | $(obj)/%.bin: OBJCOPYFLAGS := -O binary |
| 77 | $(obj)/%.bin: $(obj)/% FORCE |
| 78 | $(call if_changed,objcopy) |