Makefile 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. #
  2. # Copyright (C) 2007 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. tools-$(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4) += gmp mpfr
  13. tools-y += m4 autoconf automake bison pkg-config sed
  14. tools-y += sstrip ipkg-utils genext2fs squashfs squashfs4 mtd-utils lzma-old mkimage
  15. tools-y += firmware-utils patch-cmdline quilt yaffs2
  16. tools-$(CONFIG_CCACHE) += ccache
  17. tools-$(CONFIG_powerpc) += dtc
  18. tools-dep += lzma
  19. # builddir dependencies
  20. $(curdir)/squashfs/compile := $(curdir)/lzma-old/install
  21. $(curdir)/squashfs4/compile := $(curdir)/lzma/install
  22. $(curdir)/quilt/compile := $(curdir)/sed/install
  23. $(curdir)/dtc/compile := $(curdir)/bison/install
  24. $(curdir)/autoconf/compile := $(curdir)/m4/install
  25. $(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install
  26. $(curdir)/mpfr/compile := $(curdir)/gmp/install
  27. $(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
  28. $(curdir)/builddirs-default := $(tools-y)
  29. # preparatory work
  30. $(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
  31. @for dir in $(STAGING_DIR) $(STAGING_DIR_HOST); do ( \
  32. set -x; \
  33. mkdir -p "$$dir"; \
  34. cd "$$dir"; \
  35. mkdir -p bin lib include stamp; \
  36. ); done
  37. mkdir -p $(BUILD_DIR_HOST)/stamp $(BUILD_DIR)/stamp
  38. $(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
  39. touch $@
  40. define PrepareCommand
  41. $(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
  42. @mkdir -p "$$(dir $$@)"; rm -f "$$@"
  43. @export FILE="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n "$$$$FILE" ] || { \
  44. echo "Command $(1) not found."; false; \
  45. }; ln -s "$$$$FILE" "$$@"
  46. endef
  47. $(eval $(call PrepareCommand,find,gfind find))
  48. $(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
  49. $(eval $(call PrepareCommand,cp,gcp cp))
  50. $(eval $(call PrepareCommand,stat,gstat stat))
  51. $(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat)
  52. $(curdir)//prepare = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps)
  53. $(curdir)//compile = $(STAGING_DIR)/.prepared $($(curdir)/cmddeps)
  54. # prerequisites for the individual targets
  55. $(curdir)/ := .config prereq
  56. $(curdir)//install = $(1)/compile
  57. $(eval $(call stampfile,$(curdir),tools,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_3))
  58. $(eval $(call subdir,$(curdir)))