1 LOCAL_PATH:= $(call my-dir) 2 3 include $(CLEAR_VARS) 4 include $(CLEAR_TBLGEN_VARS) 5 6 TBLGEN_TABLES := \ 7 DiagnosticCommonKinds.inc \ 8 DeclNodes.inc \ 9 StmtNodes.inc 10 11 lldb_PluginProcessElfCore_SRC_FILES := \ 12 ProcessElfCore.cpp \ 13 RegisterContextCoreFreeBSD_x86_64.cpp \ 14 RegisterContextCoreLinux_x86_64.cpp \ 15 ThreadElfCore.cpp 16 17 LOCAL_SRC_FILES := $(lldb_PluginProcessElfCore_SRC_FILES) 18 19 LOCAL_MODULE:= liblldbPluginProcessElfCore 20 LOCAL_MODULE_TAGS := optional 21 22 include $(LLDB_BUILD_MK) 23 include $(CLANG_VERSION_INC_MK) 24 include $(CLANG_TBLGEN_RULES_MK) 25 include $(BUILD_HOST_STATIC_LIBRARY) 26