2009-05-15 15:07:21 +03:00
|
|
|
#
|
2007-07-28 05:44:55 +03:00
|
|
|
# Copyright (C) 2007 OpenWrt.org
|
2006-09-27 17:06:46 +03: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 18:00:27 +03:00
|
|
|
curdir:=tools
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# subdirectories to descend into
|
2009-04-24 04:18:49 +03:00
|
|
|
tools-y :=
|
2009-11-05 13:16:20 +02:00
|
|
|
ifeq ($(CONFIG_EXTERNAL_TOOLCHAIN),)
|
2009-04-24 04:18:49 +03:00
|
|
|
tools-$(CONFIG_GCC_VERSION_4_3)$(CONFIG_GCC_VERSION_4_4) += gmp mpfr
|
2009-11-05 13:16:20 +02:00
|
|
|
endif
|
2009-08-07 03:07:18 +03:00
|
|
|
tools-y += m4 autoconf automake bison pkg-config sed mklibs
|
2010-01-11 13:02:54 +02:00
|
|
|
tools-y += sstrip ipkg-utils genext2fs libuuid mtd-utils mkimage
|
2009-04-24 04:18:49 +03:00
|
|
|
tools-y += firmware-utils patch-cmdline quilt yaffs2
|
2009-12-12 04:00:50 +02:00
|
|
|
tools-$(CONFIG_TARGET_orion) += wrt350nv2-builder upslug2
|
2010-02-11 10:37:57 +02:00
|
|
|
ifneq ($(CONFIG_LINUX_2_4)$(CONFIG_LINUX_2_6_25),)
|
2009-11-29 11:33:50 +02:00
|
|
|
tools-y += squashfs lzma-old
|
2009-11-15 22:25:29 +02:00
|
|
|
else
|
2009-11-29 11:33:50 +02:00
|
|
|
ifneq ($(CONFIG_TARGET_ar71xx),)
|
|
|
|
tools-y += squashfs lzma-old
|
|
|
|
endif
|
2009-11-15 22:25:29 +02:00
|
|
|
tools-y += squashfs4 lzma
|
|
|
|
endif
|
2009-04-06 12:56:12 +03:00
|
|
|
tools-$(CONFIG_CCACHE) += ccache
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2009-11-12 15:42:07 +02:00
|
|
|
ifdef CONFIG_GCC_USE_GRAPHITE
|
2009-11-02 02:47:21 +02:00
|
|
|
tools-y += ppl cloog
|
|
|
|
$(curdir)/cloog/compile := $(curdir)/ppl/install
|
|
|
|
endif
|
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# builddir dependencies
|
2009-05-26 22:11:56 +03:00
|
|
|
$(curdir)/pkg-config/compile := $(curdir)/sed/install
|
2009-05-04 20:04:03 +03:00
|
|
|
$(curdir)/squashfs/compile := $(curdir)/lzma-old/install
|
2009-05-17 03:57:52 +03:00
|
|
|
$(curdir)/squashfs4/compile := $(curdir)/lzma/install
|
2008-09-02 13:56:56 +03:00
|
|
|
$(curdir)/quilt/compile := $(curdir)/sed/install
|
2009-03-01 11:47:05 +02:00
|
|
|
$(curdir)/dtc/compile := $(curdir)/bison/install
|
2009-03-22 20:31:54 +02:00
|
|
|
$(curdir)/autoconf/compile := $(curdir)/m4/install
|
2009-04-24 04:04:54 +03:00
|
|
|
$(curdir)/automake/compile := $(curdir)/m4/install $(curdir)/autoconf/install
|
|
|
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
2010-01-13 15:14:35 +02:00
|
|
|
$(curdir)/mtd-utils/compile := $(curdir)/libuuid/install
|
2006-09-27 17:06:46 +03:00
|
|
|
|
2009-04-06 12:56:12 +03:00
|
|
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
|
|
|
$(curdir)/builddirs-default := $(tools-y)
|
|
|
|
|
2009-05-26 22:11:52 +03:00
|
|
|
define PrepareStaging
|
|
|
|
@for dir in $(1); do ( \
|
2007-08-07 03:04:25 +03:00
|
|
|
set -x; \
|
|
|
|
mkdir -p "$$dir"; \
|
|
|
|
cd "$$dir"; \
|
|
|
|
mkdir -p bin lib include stamp; \
|
|
|
|
); done
|
2009-05-26 22:11:52 +03: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 03:04:25 +03:00
|
|
|
$(INSTALL_DATA) $(TOPDIR)/tools/include/*.h $(STAGING_DIR_HOST)/include/
|
|
|
|
touch $@
|
|
|
|
|
2009-05-26 22:11:52 +03:00
|
|
|
|
2009-01-25 21:00:43 +02: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-19 19:18:26 +02:00
|
|
|
$(eval $(call PrepareCommand,stat,gstat stat))
|
2009-01-25 21:00:43 +02:00
|
|
|
|
2009-02-19 19:18:26 +02:00
|
|
|
$(curdir)/cmddeps = $(patsubst %,$(STAGING_DIR_HOST)/bin/%,find md5sum cp stat)
|
2009-05-26 22:11:52 +03: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 17:06:46 +03:00
|
|
|
|
2007-07-28 05:44:55 +03:00
|
|
|
# prerequisites for the individual targets
|
2007-07-30 21:22:01 +03:00
|
|
|
$(curdir)/ := .config prereq
|
2007-07-28 16:44:04 +03:00
|
|
|
$(curdir)//install = $(1)/compile
|
2007-07-28 05:53:54 +03:00
|
|
|
|
2009-12-12 04:00:50 +02:00
|
|
|
$(eval $(call stampfile,$(curdir),tools,install,,CONFIG_CCACHE CONFIG_powerpc CONFIG_GCC_VERSION_4_3 CONFIG_GCC_USE_GRAPHITE CONFIG_TARGET_orion))
|
2007-07-28 16:44:04 +03:00
|
|
|
$(eval $(call subdir,$(curdir)))
|