blob: 6ead26b134c5bdc50f8e3d854ed9fe3f26772146 (
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
|
# $NetBSD: Makefile,v 1.6 2013/04/25 13:59:55 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+= \
ObjCARC \
IRReader \
AsmParser \
BitReader \
BitWriter \
InstCombine \
Instrumentation \
Linker \
ScalarOpts \
Target \
ipo \
Vectorize \
TransformsUtils \
Analysis \
ipa \
IR \
Support
.include "${.PARSEDIR}/../../link.mk"
.include <bsd.prog.mk>
|