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= DiagnosticCommonKinds \ 35 DeclNodes \ 36 StmtNodes \ 37 CommentCommandList \ 38 AttrParsedAttrList \ 39 DiagnosticFrontendKinds \ 40 Intrinsics 41 42.include "../lldb.lib.mk" 43