summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lldb/lib/Makefile4
-rw-r--r--lldb/source/Plugins/Makefile3
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/None/Makefile14
-rw-r--r--lldb/source/Plugins/ScriptInterpreter/Python/Makefile14
4 files changed, 33 insertions, 2 deletions
diff --git a/lldb/lib/Makefile b/lldb/lib/Makefile
index f5c343e99cf..26c98c8f440 100644
--- a/lldb/lib/Makefile
+++ b/lldb/lib/Makefile
@@ -96,7 +96,9 @@ USEDLIBS = lldbAPI.a \
lldbPluginPlatformFreeBSD.a \
lldbPluginPlatformPOSIX.a \
lldbPluginPlatformKalimba.a \
- lldbPluginPlatformAndroid.a
+ lldbPluginPlatformAndroid.a \
+ lldbPluginScriptInterpreterNone.a \
+ lldbPluginScriptInterpreterPython.a
# Because GCC requires RTTI enabled for lldbCore (see source/Core/Makefile) it is
# necessary to also link the clang rewriter libraries so vtable references can
diff --git a/lldb/source/Plugins/Makefile b/lldb/source/Plugins/Makefile
index f9911823cc6..858be7f1c71 100644
--- a/lldb/source/Plugins/Makefile
+++ b/lldb/source/Plugins/Makefile
@@ -32,7 +32,8 @@ PARALLEL_DIRS := ABI/MacOSX-arm ABI/MacOSX-arm64 ABI/MacOSX-i386 ABI/SysV-i386 A
SystemRuntime/MacOSX \
SymbolVendor/ELF \
MemoryHistory/asan \
- InstrumentationRuntime/AddressSanitizer
+ InstrumentationRuntime/AddressSanitizer \
+ ScriptInterpreter/Python ScriptInterpreter/None
ifeq ($(HOST_OS),Darwin)
PARALLEL_DIRS += Process/MacOSX-Kernel
diff --git a/lldb/source/Plugins/ScriptInterpreter/None/Makefile b/lldb/source/Plugins/ScriptInterpreter/None/Makefile
new file mode 100644
index 00000000000..1e252319852
--- /dev/null
+++ b/lldb/source/Plugins/ScriptInterpreter/None/Makefile
@@ -0,0 +1,14 @@
+##===- source/Plugins/ScriptInterpreter/None/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 := lldbPluginScriptInterpreterNone
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile
diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/Makefile b/lldb/source/Plugins/ScriptInterpreter/Python/Makefile
new file mode 100644
index 00000000000..cf605014d45
--- /dev/null
+++ b/lldb/source/Plugins/ScriptInterpreter/Python/Makefile
@@ -0,0 +1,14 @@
+##===- source/Plugins/ScriptInterpreter/Python/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 := lldbPluginScriptInterpreterPython
+BUILD_ARCHIVE = 1
+
+include $(LLDB_LEVEL)/Makefile
OpenPOWER on IntegriCloud