blob: 52e0b57e70b5286bedc2a00c2d2660569e7fd0cc (
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
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:14 joerg Exp $
LIB= LLVMXRay
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/XRay
SRCS+= BlockIndexer.cpp \
BlockPrinter.cpp \
BlockVerifier.cpp \
FDRRecordProducer.cpp \
FDRRecords.cpp \
FDRTraceExpander.cpp \
FDRTraceWriter.cpp \
FileHeaderReader.cpp \
InstrumentationMap.cpp \
LogBuilderConsumer.cpp \
Profile.cpp \
RecordInitializer.cpp \
RecordPrinter.cpp \
Trace.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|