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_PluginProcessDarwin_SRC_FILES := \ 12 CommunicationKDP.cpp \ 13 ProcessKDP.cpp \ 14 ProcessKDPLog.cpp \ 15 RegisterContextKDP_arm.cpp \ 16 RegisterContextKDP_i386.cpp \ 17 RegisterContextKDP_x86_64.cpp \ 18 ThreadKDP.cpp 19 20LOCAL_SRC_FILES := $(lldb_PluginProcessDarwin_SRC_FILES) 21 22LOCAL_MODULE:= liblldbPluginProcessDarwin 23LOCAL_MODULE_TAGS := optional 24 25include $(LLDB_BUILD_MK) 26include $(CLANG_VERSION_INC_MK) 27include $(CLANG_TBLGEN_RULES_MK) 28include $(BUILD_HOST_STATIC_LIBRARY) 29