Makefile 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. #
  2. # (C) Copyright 2000-2006
  3. # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. #
  5. # SPDX-License-Identifier: GPL-2.0+
  6. #
  7. extra-y := hello_world
  8. extra-$(CONFIG_SMC91111) += smc91111_eeprom
  9. extra-$(CONFIG_SMC911X) += smc911x_eeprom
  10. extra-$(CONFIG_SPI_FLASH_ATMEL) += atmel_df_pow2
  11. extra-$(CONFIG_PPC) += sched
  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. extra-y += $(addsuffix .srec,$(extra-y)) $(addsuffix .bin,$(extra-y))
  19. clean-files := *.srec *.bin
  20. COBJS := $(ELF:=.o)
  21. LIB = $(obj)/libstubs.o
  22. LIBOBJS-$(CONFIG_PPC) += ppc_longjmp.o ppc_setjmp.o
  23. LIBOBJS-y += stubs.o
  24. .SECONDARY: $(call objectify,$(COBJS))
  25. targets += $(patsubst $(obj)/%,%,$(LIB)) $(COBJS) $(LIBOBJS-y)
  26. LIBOBJS := $(addprefix $(obj)/,$(LIBOBJS-y))
  27. ELF := $(addprefix $(obj)/,$(ELF))
  28. # For PowerPC there's no need to compile standalone applications as a
  29. # relocatable executable. The relocation data is not needed, and
  30. # also causes the entry point of the standalone application to be
  31. # inconsistent.
  32. ifeq ($(CONFIG_PPC),y)
  33. PLATFORM_CPPFLAGS := $(filter-out $(RELFLAGS),$(PLATFORM_CPPFLAGS))
  34. endif
  35. # We don't want gcc reordering functions if possible. This ensures that an
  36. # application's entry point will be the first function in the application's
  37. # source file.
  38. ccflags-y += $(call cc-option,-fno-toplevel-reorder)
  39. #########################################################################
  40. quiet_cmd_link_lib = LD $@
  41. cmd_link_lib = $(LD) $(ld_flags) -r -o $@ $(filter $(LIBOBJS), $^)
  42. $(LIB): $(LIBOBJS) FORCE
  43. $(call if_changed,link_lib)
  44. quiet_cmd_link_elf = LD $@
  45. cmd_link_elf = $(LD) $(LDFLAGS) -g -Ttext $(CONFIG_STANDALONE_LOAD_ADDR) \
  46. -o $@ -e $(SYM_PREFIX)$(@F) $< $(LIB) $(PLATFORM_LIBGCC)
  47. $(ELF): $(obj)/%: $(obj)/%.o $(LIB) FORCE
  48. $(call if_changed,link_elf)
  49. $(obj)/%.srec: OBJCOPYFLAGS := -O srec
  50. $(obj)/%.srec: $(obj)/% FORCE
  51. $(call if_changed,objcopy)
  52. $(obj)/%.bin: OBJCOPYFLAGS := -O binary
  53. $(obj)/%.bin: $(obj)/% FORCE
  54. $(call if_changed,objcopy)
  55. # some files can only build in ARM or THUMB2, not THUMB1
  56. ifdef CONFIG_SYS_THUMB_BUILD
  57. ifndef CONFIG_HAS_THUMB2
  58. CFLAGS_stubs.o := -marm
  59. endif
  60. endif