xref: /minix3/external/bsd/llvm/bin/llvm-diff/Makefile (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1#	$NetBSD: Makefile,v 1.4 2013/04/25 13:59:55 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	IR \
20	Support
21
22.include "${.PARSEDIR}/../../link.mk"
23
24.include <bsd.prog.mk>
25