summaryrefslogtreecommitdiff
path: root/makefiles/Makefile.tools
diff options
context:
space:
mode:
authorRob Kendrick <rjek@netsurf-browser.org>2010-12-20 11:26:07 +0000
committerRob Kendrick <rjek@netsurf-browser.org>2010-12-20 11:26:07 +0000
commit74f566afae6d7c5b780ac56a3fe2b69992307cd4 (patch)
treee9223dd94169ecb0240970e4318dc216b969647c /makefiles/Makefile.tools
parent0b35f3ed6010601f9ef6bb9e5c587e76d697d8aa (diff)
downloadbuildsystem-74f566afae6d7c5b780ac56a3fe2b69992307cd4.tar.gz
buildsystem-74f566afae6d7c5b780ac56a3fe2b69992307cd4.tar.bz2
Simplistic clang support, based on Makefile.gcc. Bare minimum of changes.
svn path=/trunk/tools/buildsystem/; revision=11110
Diffstat (limited to 'makefiles/Makefile.tools')
-rw-r--r--makefiles/Makefile.tools4
1 files changed, 4 insertions, 0 deletions
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 3a8cd47..655d254 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -316,6 +316,10 @@ else
ifeq ($(word 1,$(ccvsn)),GCC)
toolchain := gcc
endif
+ # "clang ..."
+ ifeq ($(word 1,$(ccvsn)),clang)
+ toolchain := clang
+ endif
endif
ifeq ($(toolchain),)