1# $FreeBSD$ 2 3.include <bsd.own.mk> 4 5LIB= lldbPluginSymbolFileDWARF 6 7SRCDIR= tools/lldb/source/Plugins/SymbolFile/DWARF 8SRCS= DWARFAbbreviationDeclaration.cpp \ 9 DWARFCompileUnit.cpp \ 10 DWARFDataExtractor.cpp \ 11 DWARFDebugAbbrev.cpp \ 12 DWARFDebugAranges.cpp \ 13 DWARFDebugArangeSet.cpp \ 14 DWARFDebugInfo.cpp \ 15 DWARFDebugInfoEntry.cpp \ 16 DWARFDebugLine.cpp \ 17 DWARFDebugMacinfo.cpp \ 18 DWARFDebugMacinfoEntry.cpp \ 19 DWARFDebugPubnames.cpp \ 20 DWARFDebugPubnamesSet.cpp \ 21 DWARFDebugRanges.cpp \ 22 DWARFDeclContext.cpp \ 23 DWARFDefines.cpp \ 24 DWARFDIECollection.cpp \ 25 DWARFFormValue.cpp \ 26 DWARFLocationDescription.cpp \ 27 DWARFLocationList.cpp \ 28 LogChannelDWARF.cpp \ 29 NameToDIE.cpp \ 30 SymbolFileDWARF.cpp \ 31 SymbolFileDWARFDebugMap.cpp \ 32 UniqueDWARFASTType.cpp 33 34TGHDRS= AttrList \ 35 Attrs \ 36 DiagnosticCommonKinds \ 37 DeclNodes \ 38 StmtNodes \ 39 CommentCommandList \ 40 AttrParsedAttrList \ 41 DiagnosticFrontendKinds \ 42 Intrinsics 43 44.include "../lldb.lib.mk" 45