0526cd47da
clang-tblgen and clang itself built.
24 lines
387 B
Makefile
24 lines
387 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
|
|
|
|
TGHDRS= Attributes
|
|
|
|
.include "../clang.lib.mk"
|