summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2013-06-30 21:29:07 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2013-07-04 00:14:10 +0200
commite57e4b96bf33b5a498608204913d6731a6856b5e (patch)
treee2a350d66397185222072b9ef336deb504f164c9 /Makefile
parentd21a176bd517a788e19fce95f3fbd5cb0bd14e58 (diff)
downloadbuildroot-novena-e57e4b96bf33b5a498608204913d6731a6856b5e.tar.gz
buildroot-novena-e57e4b96bf33b5a498608204913d6731a6856b5e.zip
Use more sensible names for the external/ctng targets
Instead of using the 'uclibc' target for all toolchain backends, introduce more sensible target names for the external toolchain and Crosstool-NG toolchain backend make targets. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e3e275003..7a4602c7d 100644
--- a/Makefile
+++ b/Makefile
@@ -225,9 +225,12 @@ endif
ifeq ($(BR2_TOOLCHAIN_BUILDROOT),y)
BASE_TARGETS += toolchain-buildroot
-else
-BASE_TARGETS += uclibc
+else ifeq ($(BR2_TOOLCHAIN_EXTERNAL),y)
+BASE_TARGETS += toolchain-external
+else ifeq ($(BR2_TOOLCHAIN_CTNG),y)
+BASE_TARGETS += toolchain-crosstool-ng
endif
+
TARGETS:=
# silent mode requested?