aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2012-08-31 19:46:47 +0000
committerDavid Blaikie <dblaikie@gmail.com>2012-08-31 19:46:47 +0000
commit50174dc642a16e372fef6f3935f998450dda70e0 (patch)
tree85e00919162be25b9c3083b1565acadb006f43fe
parent7036425c59000b63662b70dab35f691eb8f10a40 (diff)
downloadllvm-50174dc642a16e372fef6f3935f998450dda70e0.zip
llvm-50174dc642a16e372fef6f3935f998450dda70e0.tar.gz
llvm-50174dc642a16e372fef6f3935f998450dda70e0.tar.bz2
Add loop-convert to the Make build.
Hey, now the loop-convert tests pass too. llvm-svn: 163015
-rw-r--r--clang-tools-extra/Makefile2
-rw-r--r--clang-tools-extra/loop-convert/Makefile25
2 files changed, 26 insertions, 1 deletions
diff --git a/clang-tools-extra/Makefile b/clang-tools-extra/Makefile
index 7950470..cf919a5 100644
--- a/clang-tools-extra/Makefile
+++ b/clang-tools-extra/Makefile
@@ -11,7 +11,7 @@ CLANG_LEVEL := ../..
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
diff --git a/clang-tools-extra/loop-convert/Makefile b/clang-tools-extra/loop-convert/Makefile
new file mode 100644
index 0000000..6dc8074
--- /dev/null
+++ b/clang-tools-extra/loop-convert/Makefile
@@ -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
+