summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTorok Edwin <edwintorok@gmail.com>2009-09-26 20:18:58 +0000
committerTorok Edwin <edwintorok@gmail.com>2009-09-26 20:18:58 +0000
commit282098be8463035143bd8444796e6a58b0205c29 (patch)
tree42c3a6ae785f3bcbeb4f08b5307d9b6eaf5b15de /Makefile
parent2fcf85efe7d6cdd18788b44eb1e8fed7d939d312 (diff)
downloadllvm-282098be8463035143bd8444796e6a58b0205c29.tar.gz
llvm-282098be8463035143bd8444796e6a58b0205c29.tar.bz2
llvm-282098be8463035143bd8444796e6a58b0205c29.tar.xz
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 03ab044652..bd8552b5bc 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