[llvm-commits] [llvm] r145160 - /llvm/trunk/Makefile
Bob Wilson
bob.wilson at apple.com
Sat Nov 26 17:48:54 PST 2011
Author: bwilson
Date: Sat Nov 26 19:48:54 2011
New Revision: 145160
URL: http://llvm.org/viewvc/llvm-project?rev=145160&view=rev
Log:
Partially revert r145157 to quiet an unhappy buildbot.
Removing that buildbot would be a better solution, but this is at least
a temporary workaround.
Modified:
llvm/trunk/Makefile
Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=145160&r1=145159&r2=145160&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Sat Nov 26 19:48:54 2011
@@ -76,6 +76,14 @@
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 @@
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.
More information about the llvm-commits
mailing list