blob: f6e830ec2f0388a08007c9078dfa90f99afe5079 (
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
|
# $OpenBSD: Makefile,v 1.3 2017/07/09 15:28:35 espie Exp $
LIB= LLVMDebugInfoCodeView
NOPIC=
NOPROFILE=
CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/DebugInfo/CodeView
.include <bsd.own.mk>
SRCS= CVTypeDumper.cpp \
CVTypeVisitor.cpp \
CodeViewError.cpp \
CodeViewRecordIO.cpp \
Line.cpp \
ModuleSubstream.cpp \
ModuleSubstreamVisitor.cpp \
RecordSerialization.cpp \
SymbolDumper.cpp \
TypeDatabase.cpp \
TypeDatabaseVisitor.cpp \
TypeDumpVisitor.cpp \
TypeRecord.cpp \
TypeRecordMapping.cpp \
TypeSerializer.cpp \
TypeStreamMerger.cpp
.PATH: ${.CURDIR}/../../../llvm/lib/DebugInfo/CodeView
install:
@# Nothing here so far ...
.include <bsd.lib.mk>
|