diff options
Diffstat (limited to 'lib/clang/libllvmcore')
-rw-r--r-- | lib/clang/libllvmcore/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/lib/clang/libllvmcore/Makefile b/lib/clang/libllvmcore/Makefile new file mode 100644 index 0000000..c37d45a --- /dev/null +++ b/lib/clang/libllvmcore/Makefile @@ -0,0 +1,44 @@ +# $FreeBSD$ + +LIB= llvmcore + +SRCDIR= lib/VMCore +SRCS= AsmWriter.cpp \ + Attributes.cpp \ + AutoUpgrade.cpp \ + BasicBlock.cpp \ + ConstantFold.cpp \ + Constants.cpp \ + Core.cpp \ + DebugInfoProbe.cpp \ + DebugLoc.cpp \ + Dominators.cpp \ + Function.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 \ + Use.cpp \ + User.cpp \ + Value.cpp \ + ValueSymbolTable.cpp \ + ValueTypes.cpp \ + Verifier.cpp +LLVM_REQUIRES_RTTI= + +TGHDRS= Intrinsics + +.include "../clang.lib.mk" |