aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEdwin Török <edwintorok@gmail.com>2009-09-26 20:18:58 +0000
committerEdwin Török <edwintorok@gmail.com>2009-09-26 20:18:58 +0000
commite29707fa8162a0dd61380c9ca6e92a47dcb87170 (patch)
tree42c3a6ae785f3bcbeb4f08b5307d9b6eaf5b15de /Makefile
parent7714ad64800f0e4c645ed922455ce09a71686538 (diff)
downloadexternal_llvm-e29707fa8162a0dd61380c9ca6e92a47dcb87170.zip
external_llvm-e29707fa8162a0dd61380c9ca6e92a47dcb87170.tar.gz
external_llvm-e29707fa8162a0dd61380c9ca6e92a47dcb87170.tar.bz2
Speed up clang-only link, by really linking only clang, and not the unittests
too. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82873 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 03ab044..bd8552b 100644
--- a/Makefile
+++ b/Makefile
@@ -62,7 +62,7 @@ ifeq ($(MAKECMDGOALS),install-clang)
endif
ifeq ($(MAKECMDGOALS),clang-only)
- DIRS := $(filter-out tools runtime docs, $(DIRS)) tools/clang
+ DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
OPTIONAL_DIRS :=
endif