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