From 773d63e2ad91187c2dee40f78b9941dfa4cfafb3 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 2 Jul 2014 20:05:48 +0000 Subject: [PATCH] Fix configure+make build. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@212210 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/MC/MCAnalysis/Makefile | 14 ++++++++++++++ lib/MC/Makefile | 2 +- tools/llvm-objdump/Makefile | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) create mode 100644 lib/MC/MCAnalysis/Makefile diff --git a/lib/MC/MCAnalysis/Makefile b/lib/MC/MCAnalysis/Makefile new file mode 100644 index 00000000000..add2dbd81ea --- /dev/null +++ b/lib/MC/MCAnalysis/Makefile @@ -0,0 +1,14 @@ +##===- lib/MC/MCAnalysys/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 = LLVMMCAnalysis +BUILD_ARCHIVE := 1 + +include $(LEVEL)/Makefile.common diff --git a/lib/MC/Makefile b/lib/MC/Makefile index bf8b7c0e783..a10f17e30be 100644 --- a/lib/MC/Makefile +++ b/lib/MC/Makefile @@ -10,7 +10,7 @@ LEVEL = ../.. LIBRARYNAME = LLVMMC BUILD_ARCHIVE := 1 -PARALLEL_DIRS := MCParser MCDisassembler +PARALLEL_DIRS := MCAnalysis MCParser MCDisassembler include $(LEVEL)/Makefile.common diff --git a/tools/llvm-objdump/Makefile b/tools/llvm-objdump/Makefile index 4616b78adb2..c3601ebc14e 100644 --- a/tools/llvm-objdump/Makefile +++ b/tools/llvm-objdump/Makefile @@ -9,7 +9,7 @@ LEVEL := ../.. TOOLNAME := llvm-objdump -LINK_COMPONENTS := all-targets DebugInfo MC MCParser MCDisassembler Object +LINK_COMPONENTS := all-targets DebugInfo MC MCAnalysis MCParser MCDisassembler Object # This tool has no plugins, optimize startup time. TOOL_NO_EXPORTS := 1