[llvm-commits] [llvm] r108493 - /llvm/trunk/Makefile
Daniel Dunbar
daniel at zuster.org
Thu Jul 15 18:29:50 PDT 2010
Author: ddunbar
Date: Thu Jul 15 20:29:50 2010
New Revision: 108493
URL: http://llvm.org/viewvc/llvm-project?rev=108493&view=rev
Log:
build/Clang: Build and install libLTO as part of clang-only/install-clang targets.
Modified:
llvm/trunk/Makefile
Modified: llvm/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/Makefile?rev=108493&r1=108492&r2=108493&view=diff
==============================================================================
--- llvm/trunk/Makefile (original)
+++ llvm/trunk/Makefile Thu Jul 15 20:29:50 2010
@@ -64,7 +64,8 @@
ifeq ($(MAKECMDGOALS),install-clang)
DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
- tools/clang/runtime tools/clang/docs
+ tools/clang/runtime tools/clang/docs \
+ tools/lto
OPTIONAL_DIRS :=
NO_INSTALL = 1
endif
@@ -78,7 +79,8 @@
endif
ifeq ($(MAKECMDGOALS),clang-only)
- DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) tools/clang
+ DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) \
+ tools/clang tools/lto
OPTIONAL_DIRS :=
endif
More information about the llvm-commits
mailing list