1LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4include $(CLEAR_TBLGEN_VARS)
5
6TBLGEN_TABLES := \
7  DiagnosticCommonKinds.inc \
8  DeclNodes.inc \
9  StmtNodes.inc
10
11lldb_PluginUtility_SRC_FILES := \
12  DynamicRegisterInfo.cpp \
13  InferiorCallPOSIX.cpp \
14  RegisterContextDarwin_arm.cpp \
15  RegisterContextDarwin_i386.cpp \
16  RegisterContextDarwin_x86_64.cpp \
17  RegisterContextDummy.cpp \
18  RegisterContextLLDB.cpp \
19  RegisterContextMach_arm.cpp \
20  RegisterContextMach_i386.cpp \
21  RegisterContextMach_x86_64.cpp \
22  RegisterContextMacOSXFrameBackchain.cpp \
23  RegisterContextMemory.cpp \
24  RegisterContextThreadMemory.cpp \
25  StopInfoMachException.cpp \
26  ThreadMemory.cpp \
27  UnwindLLDB.cpp \
28  UnwindMacOSXFrameBackchain.cpp
29
30LOCAL_SRC_FILES := $(lldb_PluginUtility_SRC_FILES)
31
32LOCAL_MODULE:= liblldbPluginUtility
33LOCAL_MODULE_TAGS := optional
34
35include $(LLDB_BUILD_MK)
36include $(CLANG_VERSION_INC_MK)
37include $(CLANG_TBLGEN_RULES_MK)
38include $(BUILD_HOST_STATIC_LIBRARY)
39