aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk')
-rw-r--r--source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk24
1 files changed, 24 insertions, 0 deletions
diff --git a/source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk b/source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk
new file mode 100644
index 000000000..5130ba435
--- /dev/null
+++ b/source/Plugins/DynamicLoader/POSIX-DYLD/Android.mk
@@ -0,0 +1,24 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+include $(CLEAR_TBLGEN_VARS)
+
+TBLGEN_TABLES := \
+ DiagnosticCommonKinds.inc \
+ DeclNodes.inc \
+ StmtNodes.inc
+
+lldb_PluginDynamicLoaderPOSIX_SRC_FILES := \
+ AuxVector.cpp \
+ DYLDRendezvous.cpp \
+ DynamicLoaderPOSIXDYLD.cpp
+
+LOCAL_SRC_FILES := $(lldb_PluginDynamicLoaderPOSIX_SRC_FILES)
+
+LOCAL_MODULE:= liblldbPluginDynamicLoaderPOSIX
+LOCAL_MODULE_TAGS := optional
+
+include $(LLDB_BUILD_MK)
+include $(CLANG_VERSION_INC_MK)
+include $(CLANG_TBLGEN_RULES_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)