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