blob: 71a3546a8133a045c7faff045040a02812925b76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:05 joerg Exp $
LIB= LLVMDebugInfoCodeView
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/DebugInfo/CodeView
SRCS+= AppendingTypeTableBuilder.cpp \
CodeViewError.cpp \
CodeViewRecordIO.cpp \
ContinuationRecordBuilder.cpp \
CVSymbolVisitor.cpp \
CVTypeVisitor.cpp \
DebugChecksumsSubsection.cpp \
DebugCrossExSubsection.cpp \
DebugCrossImpSubsection.cpp \
DebugFrameDataSubsection.cpp \
DebugInlineeLinesSubsection.cpp \
DebugLinesSubsection.cpp \
DebugStringTableSubsection.cpp \
DebugSubsection.cpp \
DebugSubsectionRecord.cpp \
DebugSubsectionVisitor.cpp \
DebugSymbolsSubsection.cpp \
EnumTables.cpp \
Formatters.cpp \
GlobalTypeTableBuilder.cpp \
LazyRandomTypeCollection.cpp \
Line.cpp \
MergingTypeTableBuilder.cpp \
RecordName.cpp \
RecordSerialization.cpp \
SimpleTypeSerializer.cpp \
StringsAndChecksums.cpp \
SymbolDumper.cpp \
SymbolRecordHelpers.cpp \
SymbolRecordMapping.cpp \
SymbolSerializer.cpp \
TypeDumpVisitor.cpp \
TypeHashing.cpp \
TypeIndex.cpp \
TypeIndexDiscovery.cpp \
TypeRecordHelpers.cpp \
TypeRecordMapping.cpp \
TypeStreamMerger.cpp \
TypeTableCollection.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|