1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-20 02:38:43 +00:00
freebsd/lib/clang/libllvmcore/Makefile
Dimitry Andric 34cdd77646 First part of updating llvm/clang build glue: getting llvm-tblgen,
clang-tblgen and clang itself built.
2015-12-31 14:39:45 +00:00

65 lines
1.0 KiB
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 \
FunctionInfo.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 \
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= Attributes \
AttributesCompatFunc \
Intrinsics
.include "../clang.lib.mk"