blob: 9ef0897e648a114d5350050f702ca1e910149eaa [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 AttrParsedAttrList.inc \
8 CommentCommandList.inc \
9 DiagnosticCommonKinds.inc \
10 DeclNodes.inc \
11 StmtNodes.inc
12
13LOCAL_SRC_FILES := \
14 DWARFAbbreviationDeclaration.cpp \
15 DWARFCompileUnit.cpp \
16 DWARFDebugAbbrev.cpp \
17 DWARFDebugAranges.cpp \
18 DWARFDebugArangeSet.cpp \
19 DWARFDebugInfo.cpp \
20 DWARFDebugInfoEntry.cpp \
21 DWARFDebugLine.cpp \
22 DWARFDebugMacinfo.cpp \
23 DWARFDebugMacinfoEntry.cpp \
24 DWARFDebugPubnames.cpp \
25 DWARFDebugPubnamesSet.cpp \
26 DWARFDebugRanges.cpp \
27 DWARFDeclContext.cpp \
28 DWARFDefines.cpp \
29 DWARFDIECollection.cpp \
30 DWARFFormValue.cpp \
31 DWARFLocationDescription.cpp \
32 DWARFLocationList.cpp \
33 LogChannelDWARF.cpp \
34 NameToDIE.cpp \
35 SymbolFileDWARF.cpp \
36 SymbolFileDWARFDebugMap.cpp \
37 UniqueDWARFASTType.cpp
38
39LOCAL_MODULE := liblldbPluginSymbolFileDWARF
40LOCAL_MODULE_TAGS := optional
41
42include $(LLDB_BUILD_MK)
43include $(CLANG_VERSION_INC_MK)
44include $(CLANG_TBLGEN_RULES_MK)
45include $(BUILD_HOST_STATIC_LIBRARY)