aboutsummaryrefslogtreecommitdiff
path: root/source/Plugins/Instruction/ARM/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'source/Plugins/Instruction/ARM/Android.mk')
-rw-r--r--source/Plugins/Instruction/ARM/Android.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/source/Plugins/Instruction/ARM/Android.mk b/source/Plugins/Instruction/ARM/Android.mk
new file mode 100644
index 000000000..07d606147
--- /dev/null
+++ b/source/Plugins/Instruction/ARM/Android.mk
@@ -0,0 +1,23 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+include $(CLEAR_TBLGEN_VARS)
+
+TBLGEN_TABLES := \
+ DiagnosticCommonKinds.inc \
+ DeclNodes.inc \
+ StmtNodes.inc
+
+lldb_PluginEmulateInstructionARM_SRC_FILES := \
+ EmulateInstructionARM.cpp \
+ EmulationStateARM.cpp
+
+LOCAL_SRC_FILES := $(lldb_PluginEmulateInstructionARM_SRC_FILES)
+
+LOCAL_MODULE:= liblldbPluginEmulateInstructionARM
+LOCAL_MODULE_TAGS := optional
+
+include $(LLDB_BUILD_MK)
+include $(CLANG_VERSION_INC_MK)
+include $(CLANG_TBLGEN_RULES_MK)
+include $(BUILD_HOST_STATIC_LIBRARY)