aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-01-22 01:55:10 +0000
committerChris Lattner <sabre@nondot.org>2010-01-22 01:55:10 +0000
commit0d6eee44d02cbf12955f598abf0f1d9b5554067b (patch)
treee3a1514ef6d0eb3a467eb75b0d4cf2fc870c92f8
parentc6ef277a0b8f43af22d86aea9d5053749cacfbbb (diff)
downloadexternal_llvm-0d6eee44d02cbf12955f598abf0f1d9b5554067b.zip
external_llvm-0d6eee44d02cbf12955f598abf0f1d9b5554067b.tar.gz
external_llvm-0d6eee44d02cbf12955f598abf0f1d9b5554067b.tar.bz2
forgot to svn add these, doh.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94130 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/MC/MCParser/CMakeLists.txt7
-rw-r--r--lib/MC/MCParser/Makefile15
2 files changed, 22 insertions, 0 deletions
diff --git a/lib/MC/MCParser/CMakeLists.txt b/lib/MC/MCParser/CMakeLists.txt
new file mode 100644
index 0000000..a5c0818
--- /dev/null
+++ b/lib/MC/MCParser/CMakeLists.txt
@@ -0,0 +1,7 @@
+add_llvm_library(LLVMMCParser
+ AsmLexer.cpp
+ AsmParser.cpp
+ MCAsmLexer.cpp
+ MCAsmParser.cpp
+ TargetAsmParser.cpp
+ )
diff --git a/lib/MC/MCParser/Makefile b/lib/MC/MCParser/Makefile
new file mode 100644
index 0000000..4477757
--- /dev/null
+++ b/lib/MC/MCParser/Makefile
@@ -0,0 +1,15 @@
+##===- lib/MC/MCParser/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 = LLVMMCParser
+BUILD_ARCHIVE := 1
+
+include $(LEVEL)/Makefile.common
+