Makefile 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #
  2. # Copyright (C) 2007-2009 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. # Main makefile for the toolchain
  8. #
  9. # Steps:
  10. # 1) toolchain/binutils/compile
  11. # build & install binutils
  12. # 2) toolchain/gcc/minimal/compile
  13. # build & install a minimal gcc, needed for steps 3 & 4
  14. # 3) toolchain/kernel-headers/compile
  15. # install kernel headers, needed for step 4
  16. # 4) toolchain/libc/headers/compile
  17. # build & install libc headers & support files, needed for step 5
  18. # 5) toolchain/gcc/initial/compile
  19. # build & install an initial gcc, needed for step 6
  20. # 6) toolchain/libc/compile
  21. # build & install the final libc
  22. # 7) toolchain/gcc/final/compile
  23. # build & install the final gcc
  24. # 8) toolchain/libc/utils/compile
  25. # build & install libc utilities
  26. #
  27. # For musl, steps 2 and 4 are skipped, and step 3 is done after 5
  28. curdir:=toolchain
  29. # subdirectories to descend into
  30. $(curdir)/builddirs := $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_EXTERNAL_TOOLCHAIN),wrapper,kernel-headers binutils gcc/initial gcc/final $(LIBC) fortify-headers) $(if $(CONFIG_NASM),nasm)
  31. # builddir dependencies
  32. ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
  33. ifdef CONFIG_USE_MUSL
  34. $(curdir)/kernel-headers/compile:=$(curdir)/gcc/initial/compile
  35. $(curdir)/$(LIBC)/compile:=$(curdir)/kernel-headers/compile
  36. else
  37. $(curdir)/builddirs += $(LIBC)/headers gcc/minimal
  38. $(curdir)/gcc/minimal/compile:=$(curdir)/binutils/compile
  39. $(curdir)/kernel-headers/compile:=$(curdir)/gcc/minimal/compile
  40. $(curdir)/$(LIBC)/headers/compile:=$(curdir)/kernel-headers/compile
  41. $(curdir)/gcc/initial/compile:=$(curdir)/$(LIBC)/headers/compile
  42. endif
  43. $(curdir)/gcc/initial/compile+=$(curdir)/binutils/compile
  44. $(curdir)/$(LIBC)/compile:=$(curdir)/gcc/initial/compile
  45. $(curdir)/gcc/final/compile:=$(curdir)/$(LIBC)/compile $(curdir)/kernel-headers/compile
  46. $(curdir)/$(LIBC)/utils/compile:=$(curdir)/gcc/final/compile
  47. endif
  48. ifndef DUMP_TARGET_DB
  49. ifneq ($(ARCH),)
  50. $(TOOLCHAIN_DIR)/info.mk: .config
  51. @for dir in $(TOOLCHAIN_DIR); do ( \
  52. $(if $(QUIET),,set -x;) \
  53. mkdir -p "$$dir"; \
  54. cd "$$dir"; \
  55. ln -nsf lib lib64; \
  56. ln -nsf lib lib32; \
  57. mkdir -p stamp lib usr/include usr/lib ; \
  58. ); done
  59. @grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
  60. @touch $@
  61. endif
  62. endif
  63. ifdef CONFIG_BUILDBOT
  64. ifneq ($(wildcard $(TOPDIR)/.git),)
  65. $(TOOLCHAIN_DIR)/stamp/.ver_check: $(TMP_DIR)/.build
  66. cd "$(TOPDIR)"; git log --format=%h -1 toolchain > $(TMP_DIR)/.ver_check
  67. cmp -s $(TMP_DIR)/.ver_check $@ || { \
  68. rm -rf $(BUILD_DIR) $(STAGING_DIR) $(TOOLCHAIN_DIR) $(BUILD_DIR_TOOLCHAIN); \
  69. mkdir -p $(TOOLCHAIN_DIR)/stamp; \
  70. mv $(TMP_DIR)/.ver_check $@; \
  71. }
  72. $(TOOLCHAIN_DIR)/info.mk $(STAGING_DIR)/.prepared: $(TOOLCHAIN_DIR)/stamp/.ver_check
  73. endif
  74. endif
  75. # prerequisites for the individual targets
  76. $(curdir)/ := .config prereq
  77. $(curdir)//compile = $(STAGING_DIR)/.prepared $(TOOLCHAIN_DIR)/info.mk $(tools/stamp-compile)
  78. ifndef DUMP_TARGET_DB
  79. $(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed:
  80. endif
  81. $(curdir)/install: $(curdir)/compile
  82. $(eval $(call stampfile,$(curdir),toolchain,compile,$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed,,$(TOOLCHAIN_DIR)))
  83. $(eval $(call stampfile,$(curdir),toolchain,check,$(TMP_DIR)/.build))
  84. $(eval $(call subdir,$(curdir)))