From: Torok Edwin Date: Sat, 26 Sep 2009 20:18:58 +0000 (+0000) Subject: Speed up clang-only link, by really linking only clang, and not the unittests X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=282098be8463035143bd8444796e6a58b0205c29;p=oota-llvm.git 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 --- diff --git a/Makefile b/Makefile index 03ab0446522..bd8552b5bc0 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