From 9a184b368bcd5132577bf83da9cc4cc3adcb9636 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 22 Jan 2010 01:55:10 +0000 Subject: [PATCH] forgot to svn add these, doh. llvm-svn: 94130 --- llvm/lib/MC/MCParser/CMakeLists.txt | 7 +++++++ llvm/lib/MC/MCParser/Makefile | 15 +++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 llvm/lib/MC/MCParser/CMakeLists.txt create mode 100644 llvm/lib/MC/MCParser/Makefile diff --git a/llvm/lib/MC/MCParser/CMakeLists.txt b/llvm/lib/MC/MCParser/CMakeLists.txt new file mode 100644 index 000000000000..a5c0818d609b --- /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 000000000000..4477757657c7 --- /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 +