Makefile 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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
  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)/automake/install
  42. $(curdir)/pkg-config/compile := $(curdir)/sed/install
  43. $(curdir)/libtool/compile := $(curdir)/sed/install $(curdir)/m4/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 $(curdir)/libtool/install
  49. $(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install $(curdir)/pkg-config/install $(curdir)/xz/install
  50. $(curdir)/gmp/compile := $(curdir)/automake/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)/automake/install
  58. $(curdir)/qemu/compile := $(curdir)/e2fsprogs/install
  59. $(curdir)/upslug2/compile := $(curdir)/automake/install
  60. $(curdir)/mm-macros/compile := $(curdir)/automake/install
  61. $(curdir)/xorg-macros/compile := $(curdir)/automake/install
  62. $(curdir)/xfce-macros/compile := $(curdir)/automake/install
  63. $(curdir)/missing-macros/compile := $(curdir)/automake/install
  64. $(curdir)/e2fsprogs/compile := $(curdir)/automake/install
  65. $(curdir)/libelf/compile := $(curdir)/automake/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)/automake/install
  73. ifneq ($(CONFIG_CCACHE),)
  74. $(foreach tool, $(tools-y), $(eval $(curdir)/$(tool)/compile += $(curdir)/ccache/install))
  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/install)))
  80. $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
  81. $(curdir)/builddirs-default := $(tools-y)
  82. ifndef DUMP_TARGET_DB
  83. define PrepareStaging
  84. @for dir in $(1); do ( \
  85. $(if $(QUIET),,set -x;) \
  86. mkdir -p "$$dir"; \
  87. cd "$$dir"; \
  88. mkdir -p bin lib include stamp; \
  89. ); done
  90. endef
  91. # preparatory work
  92. $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
  93. $(call PrepareStaging,$(STAGING_DIR))
  94. mkdir -p $(BUILD_DIR)/stamp
  95. touch $@
  96. $(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
  97. $(call PrepareStaging,$(STAGING_DIR_HOST))
  98. mkdir -p $(BUILD_DIR_HOST)/stamp $(STAGING_DIR_HOST)/include/sys
  99. $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
  100. $(INSTALL_DATA) $(TOPDIR)/tools/include/sys/*.h $(STAGING_DIR_HOST)/include/sys/
  101. ln -sf lib $(STAGING_DIR_HOST)/lib64
  102. touch $@
  103. define PrepareCommand
  104. $(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
  105. @mkdir -p "$$(dir $$@)"; rm -f "$$@"
  106. @export FILE="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n "$$$$FILE" ] || { \
  107. echo "Command $(1) not found."; false; \
  108. }; ln -s "$$$$FILE" "$$@"
  109. endef
  110. endif
  111. $(STAGING_DIR_HOST)/bin/stat: $(STAGING_DIR)/.prepared
  112. @rm -f $@
  113. @if stat --version > /dev/null 2>&1; then \
  114. ln -s `which stat` $@; \
  115. elif gstat --version > /dev/null 2>&1; then \
  116. ln -s `which gstat` $@; \
  117. elif gnustat --version > /dev/null 2>&1; then \
  118. ln -s `which gnustat` $@; \
  119. else \
  120. echo "GNU stat not found"; \
  121. false; \
  122. fi
  123. $(STAGING_DIR_HOST)/bin/ldconfig: $(STAGING_DIR)/.prepared
  124. touch $@
  125. chmod +x $@
  126. $(eval $(call PrepareCommand,md5sum,gmd5sum md5sum $(SCRIPT_DIR)/md5sum))
  127. $(eval $(call PrepareCommand,cp,gcp cp))
  128. $(eval $(call PrepareCommand,seq,gseq seq))
  129. $(eval $(call PrepareCommand,python,python2 python2.7 python))
  130. $(eval $(call PrepareCommand,awk,gawk awk))
  131. $(eval $(call PrepareCommand,getopt,gnugetopt /usr/local/bin/getopt getopt))
  132. $(eval $(call PrepareCommand,grep,ggrep grep))
  133. $(eval $(call PrepareCommand,tar,gtar tar))
  134. $(eval $(call PrepareCommand,diff,gdiff diff))
  135. $(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,md5sum cp stat seq python awk getopt grep tar diff ldconfig)
  136. $(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
  137. $(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
  138. # prerequisites for the individual targets
  139. $(curdir)/ := .config prereq
  140. $(curdir)//install = $(1)/compile
  141. tools_enabled = $(foreach tool,$(sort $(tools-y) $(tools-)),$(if $(filter $(tool),$(tools-y)),y,n))
  142. $(eval $(call stampfile,$(curdir),tools,install,,_$(subst $(space),,$(tools_enabled))))
  143. $(eval $(call subdir,$(curdir)))