forgot to svn add these.
authorChris Lattner <sabre@nondot.org>
Mon, 4 Jan 2010 06:28:20 +0000 (06:28 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 4 Jan 2010 06:28:20 +0000 (06:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@92460 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/InstCombine/CMakeLists.txt [new file with mode: 0644]
lib/Transforms/InstCombine/Makefile [new file with mode: 0644]

diff --git a/lib/Transforms/InstCombine/CMakeLists.txt b/lib/Transforms/InstCombine/CMakeLists.txt
new file mode 100644 (file)
index 0000000..20eb032
--- /dev/null
@@ -0,0 +1,5 @@
+add_llvm_library(LLVMInstCombine
+  InstructionCombining.cpp
+  )
+
+target_link_libraries (LLVMInstCombine LLVMTransformUtils)
diff --git a/lib/Transforms/InstCombine/Makefile b/lib/Transforms/InstCombine/Makefile
new file mode 100644 (file)
index 0000000..0c488e7
--- /dev/null
@@ -0,0 +1,15 @@
+##===- lib/Transforms/InstCombine/Makefile -----------------*- Makefile -*-===##
+#
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+#
+##===----------------------------------------------------------------------===##
+
+LEVEL = ../../..
+LIBRARYNAME = LLVMInstCombine
+BUILD_ARCHIVE = 1
+
+include $(LEVEL)/Makefile.common
+