1#	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:48 joerg Exp $
2
3PROG_CXX=	llvm-profdata
4NOMAN=		yes
5
6.include <bsd.init.mk>
7
8.PATH: ${LLVM_SRCDIR}/tools/llvm-profdata
9
10SRCS=	llvm-profdata.cpp
11
12LLVM_LIBS+= \
13	ProfileData \
14	IR \
15	Remarks \
16	BinaryFormat \
17	Support \
18	Demangle
19
20.include "${.PARSEDIR}/../../link.mk"
21
22LDADD+=	-lz
23.if !defined(HOSTPROG)
24DPADD+=	${LIBZ}
25.endif
26
27.include <bsd.prog.mk>
28