aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/Process/elf-core/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/Process/elf-core/Android.mk')
-rw-r--r--source/Plugins/Process/elf-core/Android.mk25
1 files changed, 25 insertions, 0 deletions
diff --git a/source/Plugins/Process/elf-core/Android.mk b/source/Plugins/Process/elf-core/Android.mk
new file mode 100644
index 000000000..82e6b7e45
--- /dev/null
+++ b/source/Plugins/Process/elf-core/Android.mk
@@ -0,0 +1,25 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+include $(CLEAR_TBLGEN_VARS)
+
+TBLGEN_TABLES := \
+ DiagnosticCommonKinds.inc \
+ DeclNodes.inc \
+ StmtNodes.inc
+
+lldb_PluginProcessElfCore_SRC_FILES := \
+ ProcessElfCore.cpp \
+ RegisterContextCoreFreeBSD_x86_64.cpp \
+ RegisterContextCoreLinux_x86_64.cpp \
+ ThreadElfCore.cpp
+
+LOCAL_SRC_FILES := $(lldb_PluginProcessElfCore_SRC_FILES)
+
+LOCAL_MODULE:= liblldbPluginProcessElfCore
+LOCAL_MODULE_TAGS := optional
+
+include $(LLDB_BUILD_MK)
+include $(CLANG_VERSION_INC_MK)
+include $(CLANG_TBLGEN_RULES_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)