dim fe6d24a2c1 Minimize the number of files compiled for clang only (e.g. when neither
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
2015-09-06 22:02:13 +00:00

22 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"