f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
41 lines
616 B
Makefile
41 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>
|