Makefile revision 263508
190926Snectar# $FreeBSD: stable/10/lib/clang/libllvmanalysis/Makefile 263508 2014-03-21 17:53:59Z dim $
2233294Sstas
3233294Sstas.include <bsd.own.mk>
490926Snectar
5233294SstasLIB=	llvmanalysis
690926Snectar
790926SnectarSRCDIR=	lib/Analysis
890926SnectarSRCS=	AliasAnalysis.cpp \
9233294Sstas	AliasAnalysisCounter.cpp \
1090926Snectar	AliasAnalysisEvaluator.cpp \
1190926Snectar	AliasDebugger.cpp \
12233294Sstas	AliasSetTracker.cpp \
1390926Snectar	Analysis.cpp \
1490926Snectar	BasicAliasAnalysis.cpp \
1590926Snectar	BranchProbabilityInfo.cpp \
16233294Sstas	CFG.cpp \
1790926Snectar	CFGPrinter.cpp \
1890926Snectar	CaptureTracking.cpp \
1990926Snectar	CodeMetrics.cpp \
20233294Sstas	ConstantFolding.cpp \
2190926Snectar	CostModel.cpp \
2290926Snectar	Delinearization.cpp \
2390926Snectar	DependenceAnalysis.cpp \
2490926Snectar	DomPrinter.cpp \
2590926Snectar	DominanceFrontier.cpp \
2690926Snectar	IVUsers.cpp \
2790926Snectar	InstCount.cpp \
2890926Snectar	InstructionSimplify.cpp \
2990926Snectar	Interval.cpp \
3090926Snectar	IntervalPartition.cpp \
3190926Snectar	LazyValueInfo.cpp \
3290926Snectar	LibCallAliasAnalysis.cpp \
3390926Snectar	LibCallSemantics.cpp \
3490926Snectar	Lint.cpp \
3590926Snectar	Loads.cpp \
3690926Snectar	LoopInfo.cpp \
3790926Snectar	LoopPass.cpp \
3890926Snectar	MemDepPrinter.cpp \
3990926Snectar	MemoryBuiltins.cpp \
4090926Snectar	MemoryDependenceAnalysis.cpp \
4190926Snectar	ModuleDebugInfoPrinter.cpp \
4290926Snectar	NoAliasAnalysis.cpp \
43233294Sstas	PHITransAddr.cpp \
44233294Sstas	PostDominators.cpp \
4590926Snectar	PtrUseVisitor.cpp \
4690926Snectar	RegionInfo.cpp \
47233294Sstas	RegionPass.cpp \
4890926Snectar	RegionPrinter.cpp \
49233294Sstas	ScalarEvolution.cpp \
50178825Sdfr	ScalarEvolutionAliasAnalysis.cpp \
5190926Snectar	ScalarEvolutionExpander.cpp \
5290926Snectar	ScalarEvolutionNormalization.cpp \
5390926Snectar	SparsePropagation.cpp \
54233294Sstas	TargetTransformInfo.cpp \
55233294Sstas	Trace.cpp \
56233294Sstas	TypeBasedAliasAnalysis.cpp \
57233294Sstas	ValueTracking.cpp
58233294Sstas
59233294Sstas.if ${MK_CLANG_EXTRAS} != "no"
60233294SstasSRCS+=	BlockFrequencyInfo.cpp
61233294Sstas.endif
62233294Sstas
63233294SstasTGHDRS=	Intrinsics
64233294Sstas
6590926Snectar.include "../clang.lib.mk"
66178825Sdfr