f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
53 lines
894 B
Makefile
53 lines
894 B
Makefile
# $NetBSD: Makefile,v 1.4 2013/11/28 14:19:59 joerg Exp $
|
|
|
|
LIB= LLVMIR
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/IR
|
|
|
|
SRCS+= AsmWriter.cpp \
|
|
Attributes.cpp \
|
|
AutoUpgrade.cpp \
|
|
BasicBlock.cpp \
|
|
ConstantFold.cpp \
|
|
Constants.cpp \
|
|
Core.cpp \
|
|
DIBuilder.cpp \
|
|
DataLayout.cpp \
|
|
DebugInfo.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 \
|
|
LegacyPassManager.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
|