999971f7f7
WITH_CLANG_EXTRAS nor WITH_LLDB is in effect).
63 lines
1020 B
Makefile
63 lines
1020 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
LIB= llvmcore
|
|
|
|
SRCDIR= lib/IR
|
|
SRCS= AsmWriter.cpp \
|
|
Attributes.cpp \
|
|
AutoUpgrade.cpp \
|
|
BasicBlock.cpp \
|
|
Comdat.cpp \
|
|
ConstantFold.cpp \
|
|
ConstantRange.cpp \
|
|
Constants.cpp \
|
|
Core.cpp \
|
|
DIBuilder.cpp \
|
|
DataLayout.cpp \
|
|
DebugInfo.cpp \
|
|
DebugInfoMetadata.cpp \
|
|
DebugLoc.cpp \
|
|
DiagnosticInfo.cpp \
|
|
DiagnosticPrinter.cpp \
|
|
Dominators.cpp \
|
|
Function.cpp \
|
|
GCOV.cpp \
|
|
GVMaterializer.cpp \
|
|
Globals.cpp \
|
|
IRBuilder.cpp \
|
|
IRPrintingPasses.cpp \
|
|
InlineAsm.cpp \
|
|
Instruction.cpp \
|
|
Instructions.cpp \
|
|
IntrinsicInst.cpp \
|
|
LLVMContext.cpp \
|
|
LLVMContextImpl.cpp \
|
|
LegacyPassManager.cpp \
|
|
MDBuilder.cpp \
|
|
Mangler.cpp \
|
|
Metadata.cpp \
|
|
MetadataTracking.cpp \
|
|
Module.cpp \
|
|
Operator.cpp \
|
|
Pass.cpp \
|
|
PassRegistry.cpp \
|
|
Statepoint.cpp \
|
|
Type.cpp \
|
|
TypeFinder.cpp \
|
|
Use.cpp \
|
|
User.cpp \
|
|
Value.cpp \
|
|
ValueSymbolTable.cpp \
|
|
ValueTypes.cpp \
|
|
Verifier.cpp
|
|
|
|
.if ${MK_CLANG_EXTRAS} != "no"
|
|
SRCS+= PassManager.cpp
|
|
.endif
|
|
|
|
TGHDRS= Intrinsics
|
|
|
|
.include "../clang.lib.mk"
|