52 lines
857 B
Makefile
52 lines
857 B
Makefile
# $NetBSD: Makefile,v 1.8 2012/08/09 14:37:06 joerg Exp $
|
|
|
|
LIB= LLVMCore
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/VMCore
|
|
|
|
SRCS+= AsmWriter.cpp \
|
|
Attributes.cpp \
|
|
AutoUpgrade.cpp \
|
|
BasicBlock.cpp \
|
|
ConstantFold.cpp \
|
|
Constants.cpp \
|
|
Core.cpp \
|
|
DebugInfo.cpp \
|
|
DIBuilder.cpp \
|
|
DebugLoc.cpp \
|
|
Dominators.cpp \
|
|
Function.cpp \
|
|
GCOV.cpp \
|
|
GVMaterializer.cpp \
|
|
Globals.cpp \
|
|
IRBuilder.cpp \
|
|
InlineAsm.cpp \
|
|
Instruction.cpp \
|
|
Instructions.cpp \
|
|
IntrinsicInst.cpp \
|
|
LLVMContext.cpp \
|
|
LLVMContextImpl.cpp \
|
|
LeakDetector.cpp \
|
|
Metadata.cpp \
|
|
Module.cpp \
|
|
Pass.cpp \
|
|
PassManager.cpp \
|
|
PassRegistry.cpp \
|
|
PrintModulePass.cpp \
|
|
Type.cpp \
|
|
TypeFinder.cpp \
|
|
Use.cpp \
|
|
User.cpp \
|
|
Value.cpp \
|
|
ValueSymbolTable.cpp \
|
|
ValueTypes.cpp \
|
|
Verifier.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|