summaryrefslogtreecommitdiff
path: root/core/toolchain/common.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-09-16 21:52:46 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2014-09-16 21:52:46 +0200
commit06e32970449694cc37c2fa36a7db261d458baa95 (patch)
tree234c611c01a3c66002862056442584b7d4579b83 /core/toolchain/common.mk
parent2f31f13d447c642b46829fbebb4716d7d6c77358 (diff)
downloadembtoolkit-06e32970449694cc37c2fa36a7db261d458baa95.tar.gz
embtoolkit-06e32970449694cc37c2fa36a7db261d458baa95.tar.bz2
embtoolkit-06e32970449694cc37c2fa36a7db261d458baa95.tar.xz
Toolchain: prepare use of embtk_include_xtoolpkg by renaming some variables
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'core/toolchain/common.mk')
-rw-r--r--core/toolchain/common.mk18
1 files changed, 9 insertions, 9 deletions
diff --git a/core/toolchain/common.mk b/core/toolchain/common.mk
index 3c6a75d..1a6bcb5 100644
--- a/core/toolchain/common.mk
+++ b/core/toolchain/common.mk
@@ -44,16 +44,16 @@ TOOLCHAIN_DIR := $(embtk_generated)/toolchains/toolchain-$(__xtools_archos)-$(__
#
# Toolchain pre-dependencies
#
-TOOLCHAIN_PREDEPS-y := ccache_host_install
-TOOLCHAIN_PREDEPS-y += m4_host_install
-TOOLCHAIN_PREDEPS-y += libtool_host_install
-TOOLCHAIN_PREDEPS-y += autoconf_host_install
-TOOLCHAIN_PREDEPS-y += automake_host_install
-TOOLCHAIN_PREDEPS-y += pkgconf_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y := ccache_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += m4_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += libtool_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += autoconf_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += automake_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += pkgconf_host_install
ifeq ($(embtk_buildhost_os_type),bsd)
-TOOLCHAIN_PREDEPS-y += gsed_host_install gmake_host_install
+EMBTK_TOOLCHAIN_PREDEPS-y += gsed_host_install gmake_host_install
endif
-TOOLCHAIN_PREDEPS-$(CONFIG_EMBTK_TOOLCHAIN_PREDEP_GPERF_HOST) += gperf_host_install
+EMBTK_TOOLCHAIN_PREDEPS-$(CONFIG_EMBTK_TOOLCHAIN_PREDEP_GPERF_HOST) += gperf_host_install
#
# Toolchain macros evaluating if core and addons need to be built
@@ -105,5 +105,5 @@ define ___embtk_toolchain_decompress
rm -rf $(embtk_sysroot) $(embtk_tools)
cd $(embtk_generated) && tar xjf $(TOOLCHAIN_DIR)/$(TOOLCHAIN_PACKAGE)
$(__embtk_toolchain_mkinitdirs)
- $(MAKE) $(TOOLCHAIN_PREDEPS-y)
+ $(MAKE) $(EMBTK_TOOLCHAIN_PREDEPS-y)
endef