Add UnwindAssembly plugins to makefile build

git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@131650 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Makefile b/lib/Makefile
index 29025a7..bf49958 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -39,6 +39,8 @@
 	lldbPluginProcessGDBRemote.a \
 	lldbPluginSymbolFileDWARF.a \
 	lldbPluginSymbolFileSymtab.a \
+	lldbPluginUnwindAssemblyInstEmulation.a \
+	lldbPluginUnwindAssemblyx86.a \
 	lldbPluginUtility.a \
 	lldbSymbol.a \
 	lldbTarget.a \
diff --git a/source/Plugins/Makefile b/source/Plugins/Makefile
index 4261d7e..f974d5f 100644
--- a/source/Plugins/Makefile
+++ b/source/Plugins/Makefile
@@ -15,7 +15,8 @@
 DIRS := ABI/MacOSX-i386 ABI/SysV-x86_64 Disassembler/llvm  \
 	ObjectContainer/BSD-Archive ObjectFile/ELF SymbolFile/DWARF \
 	SymbolFile/Symtab Process/Utility DynamicLoader/Static \
-	Platform Process/gdb-remote Instruction/ARM
+	Platform Process/gdb-remote Instruction/ARM \
+	UnwindAssembly/InstEmulation UnwindAssembly/x86
 
 ifeq ($(HOST_OS),Darwin)
 DIRS += DynamicLoader/MacOSX-DYLD ObjectContainer/Universal-Mach-O \
diff --git a/source/Plugins/UnwindAssembly/InstEmulation/Makefile b/source/Plugins/UnwindAssembly/InstEmulation/Makefile
new file mode 100644
index 0000000..e006235
--- /dev/null
+++ b/source/Plugins/UnwindAssembly/InstEmulation/Makefile
@@ -0,0 +1,14 @@
+##==- source/Plugins/UnwindAssembly/InstEmulation/Makefile -*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../../../..
+LIBRARYNAME := lldbPluginUnwindAssemblyInstEmulation
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile
diff --git a/source/Plugins/UnwindAssembly/x86/Makefile b/source/Plugins/UnwindAssembly/x86/Makefile
new file mode 100644
index 0000000..dddf7f7
--- /dev/null
+++ b/source/Plugins/UnwindAssembly/x86/Makefile
@@ -0,0 +1,14 @@
+##==-- source/Plugins/UnwindAssembly/x86/Makefile ----------*- Makefile -*-===##
+# 
+#                     The LLVM Compiler Infrastructure
+#
+# This file is distributed under the University of Illinois Open Source
+# License. See LICENSE.TXT for details.
+# 
+##===----------------------------------------------------------------------===##
+
+LLDB_LEVEL := ../../../..
+LIBRARYNAME := lldbPluginUnwindAssemblyx86
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile