diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-22 01:55:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-22 01:55:10 +0000 |
commit | 9a184b368bcd5132577bf83da9cc4cc3adcb9636 (patch) | |
tree | c83206900a2fb36a2a3ce1b21297b9a8b3307a4f /llvm/lib | |
parent | 00646cfbd436eb03ceb4fc869d1045008e47d5f9 (diff) | |
download | bcm5719-llvm-9a184b368bcd5132577bf83da9cc4cc3adcb9636.tar.gz bcm5719-llvm-9a184b368bcd5132577bf83da9cc4cc3adcb9636.zip |
forgot to svn add these, doh.
llvm-svn: 94130
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/MC/MCParser/CMakeLists.txt | 7 | ||||
-rw-r--r-- | llvm/lib/MC/MCParser/Makefile | 15 |
2 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCParser/CMakeLists.txt b/llvm/lib/MC/MCParser/CMakeLists.txt new file mode 100644 index 00000000000..a5c0818d609 --- /dev/null +++ b/llvm/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/llvm/lib/MC/MCParser/Makefile b/llvm/lib/MC/MCParser/Makefile new file mode 100644 index 00000000000..4477757657c --- /dev/null +++ b/llvm/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 + |