summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBob Wilson <bob.wilson@apple.com>2011-11-27 01:48:54 +0000
committerBob Wilson <bob.wilson@apple.com>2011-11-27 01:48:54 +0000
commitfed700da6028af2ca5fd4a1ecfec3572db5b0023 (patch)
tree2b6838c06f37f3ae09737145d100558d1f0f0923 /Makefile
parenta0aa45c75979986054a5571dfbd78a4326ea78c0 (diff)
downloadllvm-fed700da6028af2ca5fd4a1ecfec3572db5b0023.tar.gz
llvm-fed700da6028af2ca5fd4a1ecfec3572db5b0023.tar.bz2
llvm-fed700da6028af2ca5fd4a1ecfec3572db5b0023.tar.xz
Partially revert r145157 to quiet an unhappy buildbot.
Removing that buildbot would be a better solution, but this is at least a temporary workaround. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145160 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 9983e66118..82b16fc60c 100644
--- a/Makefile
+++ b/Makefile
@@ -76,6 +76,14 @@ ifeq ($(MAKECMDGOALS),install-clang)
NO_INSTALL = 1
endif
+ifeq ($(MAKECMDGOALS),install-clang-c)
+ DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
+ tools/clang/tools/libclang tools/clang/tools/c-index-test \
+ tools/clang/include/clang-c
+ OPTIONAL_DIRS :=
+ NO_INSTALL = 1
+endif
+
ifeq ($(MAKECMDGOALS),clang-only)
DIRS := $(filter-out tools docs unittests, $(DIRS)) \
tools/clang tools/lto
@@ -163,6 +171,7 @@ clang-only: all
tools-only: all
libs-only: all
install-clang: install
+install-clang-c: install
install-libs: install
# If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.