blob: 82e6b7e458fe797cc3775e4a10cb579d956d70cb [file] [log] [blame]
Todd Fialad55c5b12013-10-14 09:48:59 -07001LOCAL_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)