wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 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 | 1a45966 | 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 | 4a20df3 | 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 |
Masahiro Yamada | 58dac32 | 2014-03-05 17:40:10 +0900 | [diff] [blame] | 14 | extra-$(CONFIG_MPC8260) += mem_to_mem_idma2intr |
Masahiro Yamada | 4a20df3 | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 15 | extra-$(CONFIG_PPC) += sched |
Mike Frysinger | 65f6f07 | 2009-07-23 16:37:03 -0400 | [diff] [blame] | 16 | |
Sanjeev Premi | 604f7ce | 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 | 4a20df3 | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 22 | ELF := $(strip $(extra-y)) |
Sanjeev Premi | 604f7ce | 2009-11-09 22:43:00 +0530 | [diff] [blame] | 23 | |
Masahiro Yamada | 4a20df3 | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 24 | extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y)) |
Masahiro Yamada | 8e71443 | 2014-09-05 01:56:52 +0900 | [diff] [blame] | 25 | clean-files := *.srec *.bin |
Masahiro Yamada | 4a20df3 | 2014-02-04 17:24:12 +0900 | [diff] [blame] | 26 | |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 27 | COBJS := $(ELF:=.o) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 28 | |
Masahiro Yamada | 9e41403 | 2014-02-04 17:24:24 +0900 | [diff] [blame] | 29 | LIB = $(obj)/libstubs.o |
Mike Frysinger | 557555f | 2009-09-04 19:54:45 -0400 | [diff] [blame] | 30 | |
Masahiro Yamada | 04a34c9 | 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 | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 34 | |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 35 | .SECONDARY: $(call objectify,$(COBJS)) |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 36 | targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y) |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 37 | |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 38 | LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y)) |
Masahiro Yamada | 9e41403 | 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 | |
Peter Tyser | 620bbba | 2010-06-15 21:48:25 +0200 | [diff] [blame] | 41 | # For PowerPC there's no need to compile standalone applications as a |
| 42 | # relocatable executable. The relocation data is not needed, and |
| 43 | # also causes the entry point of the standalone application to be |
| 44 | # inconsistent. |
Masahiro Yamada | 026f9cf | 2014-03-05 16:59:40 +0900 | [diff] [blame] | 45 | ifeq ($(CONFIG_PPC),y) |
| 46 | PLATFORM_CPPFLAGS := $(filter-out $(RELFLAGS),$(PLATFORM_CPPFLAGS)) |
Peter Tyser | 620bbba | 2010-06-15 21:48:25 +0200 | [diff] [blame] | 47 | endif |
| 48 | |
Peter Tyser | c91d456 | 2010-09-12 17:38:49 -0500 | [diff] [blame] | 49 | # We don't want gcc reordering functions if possible. This ensures that an |
| 50 | # application's entry point will be the first function in the application's |
| 51 | # source file. |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 52 | ccflags-y += $(call cc-option,-fno-toplevel-reorder) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 53 | |
| 54 | ######################################################################### |
Masahiro Yamada | 6825a95 | 2014-02-04 17:24:28 +0900 | [diff] [blame] | 55 | |
| 56 | quiet_cmd_link_lib = LD $@ |
| 57 | cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^) |
| 58 | |
| 59 | $(LIB): $(LIBOBJS) FORCE |
| 60 | $(call if_changed,link_lib) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 61 | |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 62 | quiet_cmd_link_elf = LD $@ |
| 63 | cmd_link_elf = $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \ |
Alexey Brodkin | e75e73d | 2014-05-16 12:54:17 +0400 | [diff] [blame] | 64 | -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) $(PLATFORM_LIBGCC) |
Masahiro Yamada | 04a34c9 | 2014-02-24 11:12:19 +0900 | [diff] [blame] | 65 | |
| 66 | $(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE |
| 67 | $(call if_changed,link_elf) |
Wolfgang Denk | 9658298 | 2006-10-24 13:55:18 +0200 | [diff] [blame] | 68 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 69 | $(obj)/%.srec: OBJCOPYFLAGS := -O srec |
| 70 | $(obj)/%.srec: $(obj)/% FORCE |
| 71 | $(call if_changed,objcopy) |
wdenk | 717b5aa | 2002-04-27 11:09:31 +0000 | [diff] [blame] | 72 | |
Masahiro Yamada | f9c235f | 2014-02-24 11:12:14 +0900 | [diff] [blame] | 73 | $(obj)/%.bin: OBJCOPYFLAGS := -O binary |
| 74 | $(obj)/%.bin: $(obj)/% FORCE |
| 75 | $(call if_changed,objcopy) |