diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-09-26 20:18:58 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-09-26 20:18:58 +0000 |
commit | 282098be8463035143bd8444796e6a58b0205c29 (patch) | |
tree | 42c3a6ae785f3bcbeb4f08b5307d9b6eaf5b15de /Makefile | |
parent | 2fcf85efe7d6cdd18788b44eb1e8fed7d939d312 (diff) |
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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |