xref: /netbsd-src/external/apache2/llvm/bin/llvm-diff/Makefile (revision 53d1339bf7f9c7367b35a9e1ebe693f9b047a47b)
1#	$NetBSD: Makefile,v 1.2 2021/05/30 01:56:47 joerg Exp $
2
3PROG_CXX=	llvm-diff
4NOMAN=		yes
5
6.include <bsd.init.mk>
7
8.PATH: ${LLVM_SRCDIR}/tools/llvm-diff
9
10SRCS=	llvm-diff.cpp \
11	DiffConsumer.cpp \
12	DiffLog.cpp \
13	DifferenceEngine.cpp
14
15LLVM_LIBS+= \
16	IRReader \
17	AsmParser \
18	BitReader \
19	BitstreamReader \
20	IR \
21	Remarks \
22	BinaryFormat \
23	Support \
24	Demangle
25
26.include "${.PARSEDIR}/../../link.mk"
27
28.include <bsd.prog.mk>
29