summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-01-19 19:48:23 +0000
committerMike Stump <mrs@apple.com>2009-01-19 19:48:23 +0000
commitb76ace310ad72f4c540f260ee18eef6674b15f31 (patch)
treef5b47bc9d528ea2e667ffaa6488fda9dc74064af /Makefile
parent2722e7b1394e675114d2338ce61a92814d66d126 (diff)
downloadllvm-b76ace310ad72f4c540f260ee18eef6674b15f31.tar.gz
llvm-b76ace310ad72f4c540f260ee18eef6674b15f31.tar.bz2
llvm-b76ace310ad72f4c540f260ee18eef6674b15f31.tar.xz
Add targets to support the installation of clang in isolation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62522 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f7642d6164..7a94005457 100644
--- a/Makefile
+++ b/Makefile
@@ -54,6 +54,17 @@ ifeq ($(MAKECMDGOALS),tools-only)
OPTIONAL_DIRS :=
endif
+ifeq ($(MAKECMDGOALS),install-clang)
+ DIRS := tools/clang/Driver tools/clang/lib/Headers tools/clang/tools/ccc
+ OPTIONAL_DIRS :=
+ NO_INSTALL = 1
+endif
+
+ifeq ($(MAKECMDGOALS),clang-only)
+ DIRS := $(filter-out tools runtime docs, $(DIRS)) tools/clang
+ OPTIONAL_DIRS :=
+endif
+
ifeq ($(MAKECMDGOALS),unittests)
DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
OPTIONAL_DIRS :=
@@ -113,8 +124,10 @@ dist-hook::
$(TopDistDir)/include/llvm/Support/DataTypes.h \
$(TopDistDir)/include/llvm/Support/ThreadSupport.h
+clang-only: all
tools-only: all
libs-only: all
+install-clang: install
install-libs: install
#------------------------------------------------------------------------