xref: /minix3/external/bsd/llvm/lib/liblldbPluginSymbolFileDWARF/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1*f4a2713aSLionel Sambuc#	$NetBSD: Makefile,v 1.2 2013/10/30 20:27:40 joerg Exp $
2*f4a2713aSLionel Sambuc
3*f4a2713aSLionel SambucLIB=	lldbPluginSymbolFileDWARF
4*f4a2713aSLionel Sambuc
5*f4a2713aSLionel Sambuc.include <bsd.init.mk>
6*f4a2713aSLionel Sambuc
7*f4a2713aSLionel Sambuc.PATH: ${LLDB_SRCDIR}/source/Plugins/SymbolFile/DWARF
8*f4a2713aSLionel Sambuc
9*f4a2713aSLionel SambucSRCS+=	DWARFAbbreviationDeclaration.cpp \
10*f4a2713aSLionel Sambuc	DWARFCompileUnit.cpp \
11*f4a2713aSLionel Sambuc	DWARFDataExtractor.cpp \
12*f4a2713aSLionel Sambuc	DWARFDebugAbbrev.cpp \
13*f4a2713aSLionel Sambuc	DWARFDebugAranges.cpp \
14*f4a2713aSLionel Sambuc	DWARFDebugArangeSet.cpp \
15*f4a2713aSLionel Sambuc	DWARFDebugInfo.cpp \
16*f4a2713aSLionel Sambuc	DWARFDebugInfoEntry.cpp \
17*f4a2713aSLionel Sambuc	DWARFDebugLine.cpp \
18*f4a2713aSLionel Sambuc	DWARFDebugMacinfo.cpp \
19*f4a2713aSLionel Sambuc	DWARFDebugMacinfoEntry.cpp \
20*f4a2713aSLionel Sambuc	DWARFDebugPubnames.cpp \
21*f4a2713aSLionel Sambuc	DWARFDebugPubnamesSet.cpp \
22*f4a2713aSLionel Sambuc	DWARFDebugRanges.cpp \
23*f4a2713aSLionel Sambuc	DWARFDeclContext.cpp \
24*f4a2713aSLionel Sambuc	DWARFDefines.cpp \
25*f4a2713aSLionel Sambuc	DWARFDIECollection.cpp \
26*f4a2713aSLionel Sambuc	DWARFFormValue.cpp \
27*f4a2713aSLionel Sambuc	DWARFLocationDescription.cpp \
28*f4a2713aSLionel Sambuc	DWARFLocationList.cpp \
29*f4a2713aSLionel Sambuc	LogChannelDWARF.cpp \
30*f4a2713aSLionel Sambuc	NameToDIE.cpp \
31*f4a2713aSLionel Sambuc	SymbolFileDWARF.cpp \
32*f4a2713aSLionel Sambuc	SymbolFileDWARFDebugMap.cpp \
33*f4a2713aSLionel Sambuc	UniqueDWARFASTType.cpp
34*f4a2713aSLionel Sambuc
35*f4a2713aSLionel Sambuc.if defined(HOSTLIB)
36*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
37*f4a2713aSLionel Sambuc.else
38*f4a2713aSLionel Sambuc.include <bsd.lib.mk>
39*f4a2713aSLionel Sambuc.endif
40