[cfe-commits] [clang-tools-extra] r163015 - in /clang-tools-extra/trunk: Makefile loop-convert/Makefile
David Blaikie
dblaikie at gmail.com
Fri Aug 31 12:46:47 PDT 2012
Author: dblaikie
Date: Fri Aug 31 14:46:47 2012
New Revision: 163015
URL: http://llvm.org/viewvc/llvm-project?rev=163015&view=rev
Log:
Add loop-convert to the Make build.
Hey, now the loop-convert tests pass too.
Added:
clang-tools-extra/trunk/loop-convert/Makefile
Modified:
clang-tools-extra/trunk/Makefile
Modified: clang-tools-extra/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/Makefile?rev=163015&r1=163014&r2=163015&view=diff
==============================================================================
--- clang-tools-extra/trunk/Makefile (original)
+++ clang-tools-extra/trunk/Makefile Fri Aug 31 14:46:47 2012
@@ -11,7 +11,7 @@
include $(CLANG_LEVEL)/../../Makefile.config
-PARALLEL_DIRS := remove-cstr-calls tool-template
+PARALLEL_DIRS := remove-cstr-calls tool-template loop-convert
include $(CLANG_LEVEL)/Makefile
Added: clang-tools-extra/trunk/loop-convert/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/loop-convert/Makefile?rev=163015&view=auto
==============================================================================
--- clang-tools-extra/trunk/loop-convert/Makefile (added)
+++ clang-tools-extra/trunk/loop-convert/Makefile Fri Aug 31 14:46:47 2012
@@ -0,0 +1,25 @@
+##===- tools/extra/loop-convert/Makefile ----sssss----------*- Makefile -*-===##
+#
+# The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+CLANG_LEVEL := ../../..
+
+TOOLNAME = loop-convert
+NO_INSTALL = 1
+
+# No plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
+include $(CLANG_LEVEL)/../../Makefile.config
+LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
+USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
+ clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
+ clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
+
+include $(CLANG_LEVEL)/Makefile
+
More information about the cfe-commits
mailing list