xref: /freebsd/usr.bin/clang/llvm-cov/Makefile (revision 9f7331ad2cb064f66b3e7afd4cc5706e01e41327)
1fe2efc8cSDimitry Andric# $FreeBSD$
2fe2efc8cSDimitry Andric
3*9f7331adSEd Maste.include <src.opts.mk>
4*9f7331adSEd Maste
5fe2efc8cSDimitry AndricPROG_CXX=	llvm-cov
6*9f7331adSEd Maste.if ${MK_GCOV} == "no"
7*9f7331adSEd MasteLINKS=		${BINDIR}/llvm-cov	${BINDIR}/gcov
8*9f7331adSEd MasteMLINKS=		llvm-cov.1		gcov.1
9*9f7331adSEd Maste.endif
10fe2efc8cSDimitry Andric
11fe2efc8cSDimitry AndricSRCDIR=		tools/llvm-cov
12986e05bcSDimitry AndricSRCS+=		CodeCoverage.cpp
1351d027f2SDimitry AndricSRCS+=		CoverageExporterJson.cpp
14986e05bcSDimitry AndricSRCS+=		CoverageFilters.cpp
15986e05bcSDimitry AndricSRCS+=		CoverageReport.cpp
16986e05bcSDimitry AndricSRCS+=		CoverageSummaryInfo.cpp
17986e05bcSDimitry AndricSRCS+=		SourceCoverageView.cpp
18986e05bcSDimitry AndricSRCS+=		SourceCoverageViewHTML.cpp
19986e05bcSDimitry AndricSRCS+=		SourceCoverageViewText.cpp
20986e05bcSDimitry AndricSRCS+=		TestingSupport.cpp
21986e05bcSDimitry AndricSRCS+=		gcov.cpp
22986e05bcSDimitry AndricSRCS+=		llvm-cov.cpp
23fe2efc8cSDimitry Andric
24dbc595b2SDimitry AndricLIBADD+=	z
25dbc595b2SDimitry Andric
26986e05bcSDimitry Andric.include "../llvm.prog.mk"
27