diff options
-rw-r--r-- | lib/MC/MCParser/CMakeLists.txt | 7 | ||||
-rw-r--r-- | lib/MC/MCParser/Makefile | 15 |
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 0000000000..a5c0818d60 --- /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 0000000000..4477757657 --- /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 + |