blob: fed7b1127bf0ae95a060baa7bc1b6cae25dc066c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:11 joerg Exp $
LIB= LLVMProfileData
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/ProfileData
SRCS+= GCOV.cpp \
InstrProf.cpp \
InstrProfReader.cpp \
InstrProfWriter.cpp \
ProfileSummaryBuilder.cpp \
SampleProf.cpp \
SampleProfReader.cpp \
SampleProfWriter.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|