Makefile 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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/install
  11. # build & install binutils
  12. # 2) toolchain/gcc/minimal/install
  13. # build & install a minimal gcc, needed for steps 3 & 4
  14. # 3) toolchain/kernel-headers/install
  15. # install kernel headers, needed for step 4
  16. # 4) toolchain/libc/headers/install
  17. # build & install libc headers & support files, needed for step 5
  18. # 5) toolchain/gcc/initial/install
  19. # build & install an initial gcc, needed for step 6
  20. # 6) toolchain/libc/install
  21. # build & install the final libc
  22. # 7) toolchain/gcc/final/install
  23. # build & install the final gcc
  24. # 8) toolchain/libc/utils/install
  25. # build & install libc utilities
  26. #
  27. curdir:=toolchain
  28. # subdirectories to descend into
  29. $(curdir)/builddirs := $(if $(CONFIG_GDB),gdb) $(if $(CONFIG_INSIGHT),insight) $(if $(CONFIG_EXTERNAL_TOOLCHAIN),wrapper,kernel-headers binutils gcc/minimal gcc/initial gcc/final $(LIBC)/headers $(LIBC) fortify-headers)
  30. ifdef CONFIG_USE_UCLIBC
  31. $(curdir)/builddirs += $(LIBC)/utils
  32. endif
  33. $(curdir)/builddirs-compile:=$($(curdir)/builddirs-prepare)
  34. $(curdir)/builddirs-install:=$($(curdir)/builddirs-compile)
  35. # builddir dependencies
  36. ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
  37. $(curdir)/gcc/minimal/compile:=$(curdir)/binutils/install
  38. $(curdir)/kernel-headers/install:=$(curdir)/gcc/minimal/install
  39. $(curdir)/gcc/initial/prepare:=$(curdir)/gcc/minimal/prepare
  40. $(curdir)/gcc/final/prepare:=$(curdir)/gcc/initial/prepare
  41. $(curdir)/$(LIBC)/headers/compile:=$(curdir)/kernel-headers/install
  42. $(curdir)/gcc/initial/compile:=$(curdir)/$(LIBC)/headers/install
  43. $(curdir)/$(LIBC)/compile:=$(curdir)/gcc/initial/install
  44. $(curdir)/gcc/final/compile:=$(curdir)/$(LIBC)/install
  45. $(curdir)/$(LIBC)/utils/compile:=$(curdir)/gcc/final/install
  46. $(curdir)/$(LIBC)/prepare:=$(curdir)/$(LIBC)/headers/prepare
  47. $(curdir)/$(LIBC)/utils/prepare:=$(curdir)/$(LIBC)/headers/prepare
  48. endif
  49. ifndef DUMP_TARGET_DB
  50. ifneq ($(ARCH),)
  51. $(TOOLCHAIN_DIR)/info.mk: .config
  52. @for dir in $(TOOLCHAIN_DIR); do ( \
  53. $(if $(QUIET),,set -x;) \
  54. mkdir -p "$$dir"; \
  55. cd "$$dir"; \
  56. ln -nsf lib lib64; \
  57. ln -nsf lib lib32; \
  58. mkdir -p stamp lib usr/include usr/lib ; \
  59. ); done
  60. @grep GCC_VERSION $@ >/dev/null 2>&1 || $(INSTALL_DATA) $(TOPDIR)/toolchain/info.mk $@
  61. @touch $@
  62. endif
  63. endif
  64. # prerequisites for the individual targets
  65. $(curdir)/ := .config prereq
  66. $(curdir)//prepare = $(STAGING_DIR)/.prepared $(TOOLCHAIN_DIR)/info.mk $(tools/stamp-install)
  67. $(curdir)//compile = $(1)/prepare
  68. $(curdir)//install = $(1)/compile
  69. ifndef DUMP_TARGET_DB
  70. $(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed:
  71. endif
  72. $(eval $(call stampfile,$(curdir),toolchain,install,$(TOOLCHAIN_DIR)/stamp/.gcc-initial_installed,,$(TOOLCHAIN_DIR)))
  73. $(eval $(call subdir,$(curdir)))