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_PluginProcessElfCore_SRC_FILES := \ 12 ProcessElfCore.cpp \ 13 RegisterContextCoreFreeBSD_x86_64.cpp \ 14 RegisterContextCoreLinux_x86_64.cpp \ 15 ThreadElfCore.cpp 16 17LOCAL_SRC_FILES := $(lldb_PluginProcessElfCore_SRC_FILES) 18 19LOCAL_MODULE:= liblldbPluginProcessElfCore 20LOCAL_MODULE_TAGS := optional 21 22include $(LLDB_BUILD_MK) 23include $(CLANG_VERSION_INC_MK) 24include $(CLANG_TBLGEN_RULES_MK) 25include $(BUILD_HOST_STATIC_LIBRARY) 26