diff options
Diffstat (limited to 'lib/clang/liblldbPluginSymbolFileDWARF/Makefile')
-rw-r--r-- | lib/clang/liblldbPluginSymbolFileDWARF/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/lib/clang/liblldbPluginSymbolFileDWARF/Makefile b/lib/clang/liblldbPluginSymbolFileDWARF/Makefile new file mode 100644 index 0000000..92845e4 --- /dev/null +++ b/lib/clang/liblldbPluginSymbolFileDWARF/Makefile @@ -0,0 +1,41 @@ +# $FreeBSD$ + +.include <bsd.own.mk> + +LIB= lldbPluginSymbolFileDWARF + +SRCDIR= tools/lldb/source/Plugins/SymbolFile/DWARF +SRCS= DWARFAbbreviationDeclaration.cpp \ + DWARFCompileUnit.cpp \ + DWARFDebugAbbrev.cpp \ + DWARFDebugAranges.cpp \ + DWARFDebugArangeSet.cpp \ + DWARFDebugInfo.cpp \ + DWARFDebugInfoEntry.cpp \ + DWARFDebugLine.cpp \ + DWARFDebugMacinfo.cpp \ + DWARFDebugMacinfoEntry.cpp \ + DWARFDebugPubnames.cpp \ + DWARFDebugPubnamesSet.cpp \ + DWARFDebugRanges.cpp \ + DWARFDeclContext.cpp \ + DWARFDefines.cpp \ + DWARFDIECollection.cpp \ + DWARFFormValue.cpp \ + DWARFLocationDescription.cpp \ + DWARFLocationList.cpp \ + LogChannelDWARF.cpp \ + NameToDIE.cpp \ + SymbolFileDWARF.cpp \ + SymbolFileDWARFDebugMap.cpp \ + UniqueDWARFASTType.cpp + +TGHDRS= DiagnosticCommonKinds \ + DeclNodes \ + StmtNodes \ + CommentCommandList \ + AttrParsedAttrList \ + DiagnosticFrontendKinds \ + Intrinsics + +.include "../lldb.lib.mk" |