Makefile 5.1 KB

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