blob: 5ef26c7b62e837b2037ee0e256788d167310c0c8 (
plain) (
blame)
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
54
|
# $OpenBSD: Makefile,v 1.10 2020/08/03 14:45:25 patrick Exp $
LIB= LLVMDebugInfoCodeView
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/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 \
DebugSymbolRVASubsection.cpp \
DebugSymbolsSubsection.cpp \
DebugInfoCodeViewEnumTables.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 \
TypeIndex.cpp \
TypeIndexDiscovery.cpp \
TypeHashing.cpp \
TypeRecordHelpers.cpp \
TypeRecordMapping.cpp \
TypeStreamMerger.cpp \
TypeTableCollection.cpp
DebugInfoCodeViewEnumTables.cpp:
ln -s ${LLVM_SRCS}/lib/DebugInfo/CodeView/EnumTables.cpp $@
.PATH: ${.CURDIR}/../../../llvm/llvm/lib/DebugInfo/CodeView
CLEANFILES+= DebugInfoCodeViewEnumTables.cpp
|