Makefile 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. ifneq ($(CONFIG_GCC_VERSION_4_8),)
  16. ifeq ($(CONFIG_GCC_USE_SYSTEM_PPL_CLOOG),)
  17. BUILD_PPL_CLOOG = y
  18. endif
  19. else
  20. BUILD_ISL = y
  21. endif
  22. endif
  23. endif
  24. ifneq ($(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmware)$(CONFIG_BRCMSMAC_USE_FW_FROM_WL),)
  25. BUILD_B43_TOOLS = y
  26. endif
  27. tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat
  28. tools-y += m4 libtool autoconf automake flex bison pkg-config sed mklibs
  29. tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
  30. tools-y += firmware-utils patch-image patch quilt yaffs2 padjffs2
  31. tools-y += mm-macros missing-macros xz cmake scons bc findutils gengetopt patchelf
  32. tools-$(CONFIG_TARGET_orion_generic) += wrt350nv2-builder upslug2
  33. tools-$(CONFIG_powerpc) += upx
  34. tools-$(CONFIG_TARGET_x86) += qemu
  35. tools-$(CONFIG_TARGET_mxs) += elftosb sdimage
  36. tools-$(CONFIG_TARGET_brcm2708)$(CONFIG_TARGET_sunxi)$(CONFIG_TARGET_mxs)$(CONFIG_TARGET_omap)$(CONFIG_TARGET_zynq) += mtools dosfstools
  37. tools-$(CONFIG_TARGET_ar71xx) += lzma-old squashfs
  38. tools-y += lzma squashfs4
  39. tools-$(BUILD_B43_TOOLS) += b43-tools
  40. tools-$(BUILD_PPL_CLOOG) += ppl cloog
  41. tools-$(BUILD_ISL) += isl
  42. tools-$(CONFIG_USE_SPARSE) += sparse
  43. # builddir dependencies
  44. $(curdir)/bison/compile := $(curdir)/flex/install
  45. $(curdir)/flex/compile := $(curdir)/libtool/install
  46. $(curdir)/pkg-config/compile := $(curdir)/sed/install
  47. $(curdir)/libtool/compile := $(curdir)/sed/install $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/automake/install $(curdir)/missing-macros/install
  48. $(curdir)/squashfs/compile := $(curdir)/lzma-old/install
  49. $(curdir)/squashfs4/compile := $(curdir)/xz/install
  50. $(curdir)/quilt/compile := $(curdir)/sed/install $(curdir)/autoconf/install $(curdir)/findutils/install
  51. $(curdir)/autoconf/compile := $(curdir)/m4/install
  52. $(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install $(curdir)/xz/install
  53. $(curdir)/gmp/compile := $(curdir)/libtool/install
  54. $(curdir)/mpc/compile := $(curdir)/mpfr/install $(curdir)/gmp/install
  55. $(curdir)/mpfr/compile := $(curdir)/gmp/install
  56. $(curdir)/ppl/compile := $(curdir)/gmp/install
  57. $(curdir)/cloog/compile := $(curdir)/ppl/install
  58. $(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/install $(curdir)/xz/install
  59. $(curdir)/mkimage/compile := $(curdir)/sed/install
  60. $(curdir)/mklibs/compile := $(curdir)/libtool/install
  61. $(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
  62. $(curdir)/upslug2/compile := $(curdir)/libtool/install
  63. $(curdir)/mm-macros/compile := $(curdir)/libtool/install
  64. $(curdir)/missing-macros/compile := $(curdir)/autoconf/install
  65. $(curdir)/e2fsprogs/compile := $(curdir)/libtool/install
  66. $(curdir)/libelf/compile := $(curdir)/libtool/install
  67. $(curdir)/sdcc/compile := $(curdir)/bison/install
  68. $(curdir)/b43-tools/compile := $(curdir)/bison/install
  69. $(curdir)/padjffs2/compile := $(curdir)/findutils/install
  70. $(curdir)/cloog/compile := $(curdir)/ppl/install
  71. $(curdir)/isl/compile := $(curdir)/gmp/install
  72. $(curdir)/bc/compile := $(curdir)/bison/install
  73. $(curdir)/findutils/compile := $(curdir)/bison/install
  74. $(curdir)/gengetopt/compile := $(curdir)/libtool/install
  75. $(curdir)/patchelf/compile := $(curdir)/libtool/install
  76. ifneq ($(CONFIG_CCACHE)$(CONFIG_SDK),)
  77. $(foreach tool, $(filter-out xz patch,$(tools-y)), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
  78. tools-y += ccache
  79. endif
  80. # in case there is no patch tool on the host we need to make patch tool a
  81. # dependency for tools which have patches directory
  82. $(foreach tool, $(tools-y), $(if $(wildcard $(curdir)/$(tool)/patches),$(eval $(curdir)/$(tool)/compile += $(curdir)/patch/install)))
  83. $(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/tar/install))
  84. tools-y += tar
  85. $(curdir)/tar/compile := $(curdir)/flock/install
  86. tools-y += flock
  87. $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
  88. $(curdir)/builddirs-default := $(tools-y)
  89. ifndef DUMP_TARGET_DB
  90. define PrepareStaging
  91. @for dir in $(1); do ( \
  92. $(if $(QUIET),,set -x;) \
  93. mkdir -p "$$dir"; \
  94. cd "$$dir"; \
  95. mkdir -p bin lib include stamp; \
  96. ); done
  97. endef
  98. # preparatory work
  99. $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
  100. $(call PrepareStaging,$(STAGING_DIR))
  101. mkdir -p $(BUILD_DIR)/stamp
  102. touch $@
  103. $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
  104. $(call PrepareStaging,$(STAGING_DIR_HOST))
  105. mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
  106. $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
  107. $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
  108. ln -sf lib $(STAGING_DIR_HOST)/lib64
  109. touch $@
  110. endif
  111. $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
  112. $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared
  113. # prerequisites for the individual targets
  114. $(curdir)/ := .config prereq
  115. $(curdir)//install = $(1)/compile
  116. tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
  117. $(eval $(call stampfile,$(curdir),tools,install,,_$(subst $(space),,$(tools_enabled))))
  118. $(eval $(call subdir,$(curdir)))