2009-05-15 20:07:21 +08:00
|
|
|
#
|
2007-07-28 10:44:55 +08:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-09-27 22:06:46 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
# Main makefile for the host tools
|
|
|
|
#
|
2007-07-30 23:00:27 +08:00
|
|
|
curdir:=tools
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# subdirectories to descend into
|
2009-04-24 09:18:49 +08:00
|
|
|
tools-y :=
|
|
|
|
tools-$(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4) += gmp mpfr
|
2009-08-07 08:07:18 +08:00
|
|
|
tools-y += m4 autoconf automake bison pkg-config sed mklibs
|
2009-05-15 20:07:21 +08:00
|
|
|
tools-y += sstrip ipkg-utils genext2fs squashfs squashfs4 mtd-utils lzma-old mkimage
|
2009-04-24 09:18:49 +08:00
|
|
|
tools-y += firmware-utils patch-cmdline quilt yaffs2
|
2009-04-06 17:56:12 +08:00
|
|
|
|
|
|
|
tools-$(CONFIG_CCACHE) += ccache
|
|
|
|
tools-$(CONFIG_powerpc) += dtc
|
2009-05-17 08:57:47 +08:00
|
|
|
tools-dep += lzma
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2009-11-02 08:47:21 +08:00
|
|
|
ifdef CONFIG_GCC_VERSION_4_4
|
|
|
|
tools-y += ppl cloog
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
|
|
|
endif
|
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# builddir dependencies
|
2009-05-27 03:11:56 +08:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2009-05-05 01:04:03 +08:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/install
|
2009-05-17 08:57:52 +08:00
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/lzma/install
|
2008-09-02 18:56:56 +08:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install
|
2009-03-01 17:47:05 +08:00
|
|
|
$(curdir)/dtc/compile := $(curdir)/bison/install
|
2009-03-23 02:31:54 +08:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install
|
2009-04-24 09:04:54 +08:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install
|
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2009-04-06 17:56:12 +08:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
2009-05-27 03:11:52 +08:00
|
|
|
define PrepareStaging
|
|
|
|
@for dir in $(1); do ( \
|
2007-08-07 08:04:25 +08:00
|
|
|
set -x; \
|
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); done
|
2009-05-27 03:11:52 +08:00
|
|
|
endef
|
|
|
|
|
|
|
|
# preparatory work
|
|
|
|
$(STAGING_DIR)/.prepared: $(TMP_DIR)/.build
|
|
|
|
$(call PrepareStaging,$(STAGING_DIR))
|
|
|
|
mkdir -p $(BUILD_DIR)/stamp
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
$(STAGING_DIR_HOST)/.prepared: $(TMP_DIR)/.build
|
|
|
|
$(call PrepareStaging,$(STAGING_DIR_HOST))
|
|
|
|
mkdir -p $(BUILD_DIR_HOST)/stamp
|
2007-08-07 08:04:25 +08:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
|
|
|
touch $@
|
|
|
|
|
2009-05-27 03:11:52 +08:00
|
|
|
|
2009-01-26 03:00:43 +08:00
|
|
|
define PrepareCommand
|
|
|
|
$(STAGING_DIR_HOST)/bin/$(1): $(STAGING_DIR)/.prepared
|
|
|
|
@mkdir -p "$$(dir $$@)"; rm -f "$$@"
|
|
|
|
@export FILE="$$$$(which $(2) 2>/dev/null | grep -v 'not found' | head -n1)"; [ -n "$$$$FILE" ] || { \
|
|
|
|
echo "Command $(1) not found."; false; \
|
|
|
|
}; ln -s "$$$$FILE" "$$@"
|
|
|
|
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call PrepareCommand,find,gfind find))
|
|
|
|
$(eval $(call PrepareCommand,md5sum,md5sum $(SCRIPT_DIR)/md5sum))
|
|
|
|
$(eval $(call PrepareCommand,cp,gcp cp))
|
2009-02-20 01:18:26 +08:00
|
|
|
$(eval $(call PrepareCommand,stat,gstat stat))
|
2009-01-26 03:00:43 +08:00
|
|
|
|
2009-02-20 01:18:26 +08:00
|
|
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat)
|
2009-05-27 03:11:52 +08:00
|
|
|
$(curdir)//prepare = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
|
|
|
|
$(curdir)//compile = $(STAGING_DIR)/.prepared $(STAGING_DIR_HOST)/.prepared $($(curdir)/cmddeps)
|
2006-09-27 22:06:46 +08:00
|
|
|
|
2007-07-28 10:44:55 +08:00
|
|
|
# prerequisites for the individual targets
|
2007-07-31 02:22:01 +08:00
|
|
|
$(curdir)/ := .config prereq
|
2007-07-28 21:44:04 +08:00
|
|
|
$(curdir)//install = $(1)/compile
|
2007-07-28 10:53:54 +08:00
|
|
|
|
2009-04-06 17:56:21 +08:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_3))
|
2007-07-28 21:44:04 +08:00
|
|
|
$(eval $(call subdir,$(curdir)))
|