diff options
Diffstat (limited to 'gnu/usr.bin/clang/libLLVMipo/Makefile')
-rw-r--r-- | gnu/usr.bin/clang/libLLVMipo/Makefile | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/gnu/usr.bin/clang/libLLVMipo/Makefile b/gnu/usr.bin/clang/libLLVMipo/Makefile new file mode 100644 index 00000000000..41d6a273d1b --- /dev/null +++ b/gnu/usr.bin/clang/libLLVMipo/Makefile @@ -0,0 +1,48 @@ +# $OpenBSD: Makefile,v 1.1 2016/09/05 10:56:50 pascal Exp $ + +LIB= LLVMipo +NOPIC= +NOPROFILE= + +CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms +CPPFLAGS+= -I${LLVM_SRCS}/include/llvm/Transforms/IPO + +.include <bsd.own.mk> +SRCS= ArgumentPromotion.cpp \ + BarrierNoopPass.cpp \ + ConstantMerge.cpp \ + CrossDSOCFI.cpp \ + DeadArgumentElimination.cpp \ + ElimAvailExtern.cpp \ + ExtractGV.cpp \ + ForceFunctionAttrs.cpp \ + FunctionAttrs.cpp \ + FunctionImport.cpp \ + GlobalDCE.cpp \ + GlobalOpt.cpp \ + IPConstantPropagation.cpp \ + IPO.cpp \ + InferFunctionAttrs.cpp \ + InlineAlways.cpp \ + InlineSimple.cpp \ + Inliner.cpp \ + Internalize.cpp \ + LoopExtractor.cpp \ + LowerBitSets.cpp \ + MergeFunctions.cpp \ + PartialInlining.cpp \ + PassManagerBuilder.cpp \ + PruneEH.cpp \ + SampleProfile.cpp \ + StripDeadPrototypes.cpp \ + StripSymbols.cpp + +.PATH: ${.CURDIR}/../../../llvm/lib/Transforms/IPO + +depend: + # Nothing here so far ... + +install: + # Nothing here so far ... + +.include <bsd.lib.mk> |