Makefile 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. #
  2. # Copyright (C) 2006-2011 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 host tools
  8. #
  9. curdir:=tools
  10. # subdirectories to descend into
  11. tools-y :=
  12. ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
  13. BUILD_TOOLCHAIN := y
  14. ifdef CONFIG_GCC_USE_GRAPHITE
  15. BUILD_ISL = y
  16. endif
  17. endif
  18. tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat
  19. tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs zlib
  20. tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
  21. tools-y += firmware-utils patch-image quilt padjffs2
  22. tools-y += mm-macros missing-macros cmake scons bc findutils gengetopt patchelf
  23. tools-y += mtools dosfstools libressl
  24. tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
  25. tools-$(CONFIG_TARGET_x86) += qemu
  26. tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
  27. tools-$(CONFIG_TARGET_ar71xx) += lzma-old
  28. tools-$(CONFIG_TARGET_ar71xx)$(CONFIG_TARGET_ath79) += squashfs
  29. tools-$(CONFIG_USES_MINOR) += kernel2minor
  30. tools-y += lzma squashfs4
  31. tools-$(BUILD_ISL) += isl
  32. tools-$(CONFIG_USE_SPARSE) += sparse
  33. tools-$(CONFIG_TARGET_apm821xx) += genext2fs
  34. # builddir dependencies
  35. $(curdir)/bison/compile := $(curdir)/flex/compile
  36. $(curdir)/flex/compile := $(curdir)/libtool/compile
  37. $(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/automake/compile $(curdir)/missing-macros/compile
  38. $(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
  39. $(curdir)/squashfs4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile
  40. $(curdir)/quilt/compile := $(curdir)/autoconf/compile $(curdir)/findutils/compile
  41. $(curdir)/autoconf/compile := $(curdir)/m4/compile
  42. $(curdir)/automake/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile $(curdir)/pkg-config/compile $(curdir)/xz/compile
  43. $(curdir)/gmp/compile := $(curdir)/libtool/compile
  44. $(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
  45. $(curdir)/mpfr/compile := $(curdir)/gmp/compile
  46. $(curdir)/mtd-utils/compile := $(curdir)/libtool/compile $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
  47. $(curdir)/mklibs/compile := $(curdir)/libtool/compile
  48. $(curdir)/qemu/compile := $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
  49. $(curdir)/upslug2/compile := $(curdir)/libtool/compile
  50. $(curdir)/mm-macros/compile := $(curdir)/libtool/compile
  51. $(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
  52. $(curdir)/e2fsprogs/compile := $(curdir)/libtool/compile
  53. $(curdir)/libelf/compile := $(curdir)/libtool/compile
  54. $(curdir)/sdcc/compile := $(curdir)/bison/compile
  55. $(curdir)/padjffs2/compile := $(curdir)/findutils/compile
  56. $(curdir)/isl/compile := $(curdir)/gmp/compile
  57. $(curdir)/bc/compile := $(curdir)/bison/compile
  58. $(curdir)/findutils/compile := $(curdir)/bison/compile
  59. $(curdir)/gengetopt/compile := $(curdir)/libtool/compile
  60. $(curdir)/patchelf/compile := $(curdir)/libtool/compile
  61. $(curdir)/dosfstools/compile := $(curdir)/autoconf/compile $(curdir)/automake/compile
  62. $(curdir)/libressl/compile := $(curdir)/pkg-config/compile
  63. $(curdir)/mkimage/compile += $(curdir)/libressl/compile
  64. $(curdir)/firmware-utils/compile += $(curdir)/libressl/compile $(curdir)/zlib/compile
  65. $(curdir)/cmake/compile += $(curdir)/libressl/compile
  66. $(curdir)/zlib/compile := $(curdir)/cmake/compile
  67. $(curdir)/wrt350nv2-builder/compile := $(curdir)/zlib/compile
  68. $(curdir)/lzma-old/compile := $(curdir)/zlib/compile
  69. $(curdir)/make-ext4fs/compile := $(curdir)/zlib/compile
  70. ifneq ($(HOST_OS),Linux)
  71. tools-y += coreutils
  72. endif
  73. ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
  74. $(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/compile))
  75. tools-y += ccache
  76. endif
  77. # in case there is no patch tool on the host we need to make patch tool a
  78. # dependency for tools which have patches directory
  79. $(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/compile)))
  80. $(foreach tool, $(filter-out xz,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/xz/compile))
  81. # make any tool depend on tar, xz and patch to ensure that archives can be unpacked and patched properly
  82. tools-core := tar xz patch
  83. $(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(patsubst %,$(curdir)/%/compile,$(tools-core))))
  84. tools-y += $(tools-core)
  85. # make core tools depend on sed and flock
  86. $(foreach tool, $(tools-core), $(eval $(curdir)/$(tool)/compile += $(curdir)/sed/compile))
  87. $(curdir)/sed/compile := $(curdir)/flock/compile
  88. tools-y += flock sed
  89. $(curdir)/autoremove := 1
  90. $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
  91. $(curdir)/builddirs-default := $(tools-y)
  92. ifdef CHECK_ALL
  93. $(curdir)/builddirs-check:=$($(curdir)/builddirs)
  94. $(curdir)/builddirs-download:=$($(curdir)/builddirs)
  95. endif
  96. ifndef DUMP_TARGET_DB
  97. define PrepareStaging
  98. @for dir in $(1); do ( \
  99. $(if $(QUIET),,set -x;) \
  100. mkdir -p "$$dir"; \
  101. cd "$$dir"; \
  102. mkdir -p bin lib include stamp; \
  103. ); done
  104. endef
  105. # preparatory work
  106. $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
  107. $(call PrepareStaging,$(STAGING_DIR))
  108. mkdir -p $(BUILD_DIR)/stamp
  109. touch $@
  110. $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
  111. $(call PrepareStaging,$(STAGING_DIR_HOST))
  112. mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
  113. $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
  114. $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
  115. ln -sf lib $(STAGING_DIR_HOST)/lib64
  116. touch $@
  117. endif
  118. $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
  119. $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
  120. # prerequisites for the individual targets
  121. $(curdir)/ := .config prereq
  122. $(curdir)/install: $(curdir)/compile
  123. tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
  124. $(eval $(call stampfile,$(curdir),tools,compile,,_$(subst $(space),,$(tools_enabled))))
  125. $(eval $(call stampfile,$(curdir),tools,check,$(TMP_DIR)/.build))
  126. $(eval $(call subdir,$(curdir)))