42 lines
616 B
Makefile
42 lines
616 B
Makefile
|
# $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>
|