diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-11-14 17:51:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-11-14 17:51:32 +0000 |
commit | 44aa03f2f9da7fbe9d18107b0cab73ae9ef6b233 (patch) | |
tree | 16c4cab9ac6425cf1588707a608dbba763fbeeea /target/Makefile | |
parent | ac141eb6675f822dc00e67cd47224a230ce01864 (diff) | |
download | mtk-20170518-44aa03f2f9da7fbe9d18107b0cab73ae9ef6b233.zip mtk-20170518-44aa03f2f9da7fbe9d18107b0cab73ae9ef6b233.tar.gz mtk-20170518-44aa03f2f9da7fbe9d18107b0cab73ae9ef6b233.tar.bz2 |
Add a target (CONFIG_MAKE_CONFIG) that creates an exportable toolchain. The toolchain will zipped and saved under $(TOPDIR)/bin directory.
Signed-off-by: Luigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
SVN-Revision: 18419
Diffstat (limited to 'target/Makefile')
-rw-r--r-- | target/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/Makefile b/target/Makefile index 3d36d26..ff547f6 100644 --- a/target/Makefile +++ b/target/Makefile @@ -6,9 +6,9 @@ # curdir:=target -$(curdir)/builddirs:=linux sdk imagebuilder +$(curdir)/builddirs:=linux sdk imagebuilder toolchain $(curdir)/builddirs-default:=linux -$(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),imagebuilder) +$(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),imagebuilder) $(if $(CONFIG_MAKE_TOOLCHAIN),toolchain) $(curdir)/imagebuilder/prepare:=$(curdir)/linux/install |