43 lines
596 B
Makefile
43 lines
596 B
Makefile
# $NetBSD: Makefile,v 1.7 2012/09/23 17:22:22 joerg Exp $
|
|
|
|
PROG_CXX= lli
|
|
NOMAN= yes
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/tools/lli
|
|
|
|
SRCS= lli.cpp \
|
|
RecordingMemoryManager.cpp \
|
|
RemoteTarget.cpp
|
|
|
|
LLVM_LIBS+= \
|
|
X86CodeGen \
|
|
X86TargetInfo \
|
|
X86MCTargetDesc \
|
|
X86AsmPrinter \
|
|
X86Utils \
|
|
AsmPrinter \
|
|
AsmParser \
|
|
MCParser \
|
|
BitReader \
|
|
JIT \
|
|
MCJIT \
|
|
RuntimeDyld \
|
|
Interpreter \
|
|
ExecutionEngine \
|
|
Object \
|
|
SelectionDAG \
|
|
CodeGen \
|
|
ScalarOpts \
|
|
TransformsUtils \
|
|
Analysis \
|
|
Target \
|
|
MC \
|
|
Core \
|
|
Support
|
|
|
|
.include "${.PARSEDIR}/../../link.mk"
|
|
|
|
.include <bsd.prog.mk>
|