xref: /minix3/external/bsd/llvm/lib/libLLVMAnalysis/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc#	$NetBSD: Makefile,v 1.20 2015/01/29 20:41:35 joerg Exp $
2f4a2713aSLionel Sambuc
3f4a2713aSLionel SambucLIB=	LLVMAnalysis
4f4a2713aSLionel Sambuc
5f4a2713aSLionel Sambuc.include <bsd.init.mk>
6f4a2713aSLionel Sambuc
7f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/Analysis
8f4a2713aSLionel Sambuc
9f4a2713aSLionel SambucSRCS+=	AliasAnalysis.cpp \
10f4a2713aSLionel Sambuc	AliasAnalysisCounter.cpp \
11f4a2713aSLionel Sambuc	AliasAnalysisEvaluator.cpp \
12f4a2713aSLionel Sambuc	AliasDebugger.cpp \
13f4a2713aSLionel Sambuc	AliasSetTracker.cpp \
14f4a2713aSLionel Sambuc	Analysis.cpp \
15*0a6a1f1dSLionel Sambuc	AssumptionCache.cpp \
16f4a2713aSLionel Sambuc	BasicAliasAnalysis.cpp \
17f4a2713aSLionel Sambuc	BlockFrequencyInfo.cpp \
18*0a6a1f1dSLionel Sambuc	BlockFrequencyInfoImpl.cpp \
19f4a2713aSLionel Sambuc	BranchProbabilityInfo.cpp \
20f4a2713aSLionel Sambuc	CFG.cpp \
21f4a2713aSLionel Sambuc	CFGPrinter.cpp \
22*0a6a1f1dSLionel Sambuc	CFLAliasAnalysis.cpp \
23*0a6a1f1dSLionel Sambuc	CGSCCPassManager.cpp \
24f4a2713aSLionel Sambuc	CaptureTracking.cpp \
25f4a2713aSLionel Sambuc	CodeMetrics.cpp \
26f4a2713aSLionel Sambuc	ConstantFolding.cpp \
27f4a2713aSLionel Sambuc	CostModel.cpp \
28f4a2713aSLionel Sambuc	Delinearization.cpp \
29f4a2713aSLionel Sambuc	DependenceAnalysis.cpp \
30f4a2713aSLionel Sambuc	DomPrinter.cpp \
31f4a2713aSLionel Sambuc	DominanceFrontier.cpp \
32*0a6a1f1dSLionel Sambuc	FunctionTargetTransformInfo.cpp \
33f4a2713aSLionel Sambuc	IVUsers.cpp \
34f4a2713aSLionel Sambuc	InstCount.cpp \
35f4a2713aSLionel Sambuc	InstructionSimplify.cpp \
36f4a2713aSLionel Sambuc	Interval.cpp \
37f4a2713aSLionel Sambuc	IntervalPartition.cpp \
38*0a6a1f1dSLionel Sambuc	JumpInstrTableInfo.cpp \
39*0a6a1f1dSLionel Sambuc	LazyCallGraph.cpp \
40f4a2713aSLionel Sambuc	LazyValueInfo.cpp \
41f4a2713aSLionel Sambuc	LibCallAliasAnalysis.cpp \
42f4a2713aSLionel Sambuc	LibCallSemantics.cpp \
43f4a2713aSLionel Sambuc	Lint.cpp \
44f4a2713aSLionel Sambuc	Loads.cpp \
45f4a2713aSLionel Sambuc	LoopInfo.cpp \
46f4a2713aSLionel Sambuc	LoopPass.cpp \
47f4a2713aSLionel Sambuc	MemDepPrinter.cpp \
48f4a2713aSLionel Sambuc	MemoryBuiltins.cpp \
49f4a2713aSLionel Sambuc	MemoryDependenceAnalysis.cpp \
50f4a2713aSLionel Sambuc	ModuleDebugInfoPrinter.cpp \
51f4a2713aSLionel Sambuc	NoAliasAnalysis.cpp \
52f4a2713aSLionel Sambuc	PHITransAddr.cpp \
53f4a2713aSLionel Sambuc	PostDominators.cpp \
54f4a2713aSLionel Sambuc	PtrUseVisitor.cpp \
55f4a2713aSLionel Sambuc	RegionInfo.cpp \
56f4a2713aSLionel Sambuc	RegionPass.cpp \
57f4a2713aSLionel Sambuc	RegionPrinter.cpp \
58f4a2713aSLionel Sambuc	ScalarEvolution.cpp \
59f4a2713aSLionel Sambuc	ScalarEvolutionAliasAnalysis.cpp \
60f4a2713aSLionel Sambuc	ScalarEvolutionExpander.cpp \
61f4a2713aSLionel Sambuc	ScalarEvolutionNormalization.cpp \
62*0a6a1f1dSLionel Sambuc	ScopedNoAliasAA.cpp \
63f4a2713aSLionel Sambuc	SparsePropagation.cpp \
64f4a2713aSLionel Sambuc	TargetTransformInfo.cpp \
65f4a2713aSLionel Sambuc	Trace.cpp \
66f4a2713aSLionel Sambuc	TypeBasedAliasAnalysis.cpp \
67f4a2713aSLionel Sambuc	ValueTracking.cpp
68f4a2713aSLionel Sambuc
69f4a2713aSLionel Sambuc.if defined(HOSTLIB)
70f4a2713aSLionel Sambuc.include <bsd.hostlib.mk>
71f4a2713aSLionel Sambuc.else
72f4a2713aSLionel Sambuc.include <bsd.lib.mk>
73f4a2713aSLionel Sambuc.endif
74