Makefile 2.3 KB

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