xref: /freebsd/usr.bin/clang/llvm-cov/Makefile (revision fe2efc8c43e8a70b77d2bdf1376e597dc9ccfccd)
1*fe2efc8cSDimitry Andric# $FreeBSD$
2*fe2efc8cSDimitry Andric
3*fe2efc8cSDimitry Andric.include <bsd.own.mk>
4*fe2efc8cSDimitry Andric
5*fe2efc8cSDimitry AndricPROG_CXX=llvm-cov
6*fe2efc8cSDimitry Andric
7*fe2efc8cSDimitry AndricSRCDIR=	tools/llvm-cov
8*fe2efc8cSDimitry AndricSRCS=	CodeCoverage.cpp \
9*fe2efc8cSDimitry Andric	CoverageFilters.cpp \
10*fe2efc8cSDimitry Andric	CoverageReport.cpp \
11*fe2efc8cSDimitry Andric	CoverageSummary.cpp \
12*fe2efc8cSDimitry Andric	CoverageSummaryInfo.cpp \
13*fe2efc8cSDimitry Andric	SourceCoverageView.cpp \
14*fe2efc8cSDimitry Andric	TestingSupport.cpp \
15*fe2efc8cSDimitry Andric	gcov.cpp \
16*fe2efc8cSDimitry Andric	llvm-cov.cpp
17*fe2efc8cSDimitry Andric
18*fe2efc8cSDimitry AndricLIBDEPS=llvmprofiledata \
19*fe2efc8cSDimitry Andric	llvmobject \
20*fe2efc8cSDimitry Andric	llvmmcparser \
21*fe2efc8cSDimitry Andric	llvmmc \
22*fe2efc8cSDimitry Andric	llvmbitreader \
23*fe2efc8cSDimitry Andric	llvmcore \
24*fe2efc8cSDimitry Andric	llvmsupport
25*fe2efc8cSDimitry Andric
26*fe2efc8cSDimitry Andric.include "../clang.prog.mk"
27