mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 00:58:21 -05:00
21 lines
367 B
Makefile
21 lines
367 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmprofiledata
|
|
|
|
SRCDIR= lib/ProfileData
|
|
SRCS= CoverageMapping.cpp \
|
|
CoverageMappingReader.cpp \
|
|
CoverageMappingWriter.cpp \
|
|
InstrProf.cpp \
|
|
InstrProfReader.cpp \
|
|
InstrProfWriter.cpp \
|
|
SampleProf.cpp \
|
|
SampleProfReader.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= SampleProfWriter.cpp
|
|
.endif
|
|
|
|
.include "../clang.lib.mk"
|