From 282098be8463035143bd8444796e6a58b0205c29 Mon Sep 17 00:00:00 2001 From: Torok Edwin Date: Sat, 26 Sep 2009 20:18:58 +0000 Subject: [PATCH] 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 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1