blob: 3ee0bcf666e4797755231a448479d375e208a81c (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $NetBSD: Makefile,v 1.8 2015/01/29 20:41:33 joerg Exp $
PROG_CXX= bugpoint
NOMAN= yes
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/tools/bugpoint
SRCS= BugDriver.cpp \
CrashDebugger.cpp \
ExecutionDriver.cpp \
ExtractFunction.cpp \
FindBugs.cpp \
Miscompilation.cpp \
OptimizerDriver.cpp \
ToolRunner.cpp \
bugpoint.cpp
LLVM_LIBS+= \
CodeGen \
ObjCARC \
IRReader \
AsmParser \
BitReader \
BitWriter \
InstCombine \
Instrumentation \
MC \
Linker \
ScalarOpts \
ProfileData \
Target \
ipo \
Vectorize \
TransformsUtils \
Analysis \
ipa \
IR \
Support
.include "${.PARSEDIR}/../../link.mk"
.include <bsd.prog.mk>
|