tools/llvm: Do not build with symbols
[minix3.git] / external / bsd / llvm / lib / libLLVMScalarOpts / Makefile
blob5bd0a3af82725b9d805866d985ecf8bc64f500d7
1 # $NetBSD: Makefile,v 1.13 2013/11/28 14:19:59 joerg Exp $
3 LIB= LLVMScalarOpts
5 .include <bsd.init.mk>
7 .PATH: ${LLVM_SRCDIR}/lib/Transforms/Scalar
9 SRCS+= ADCE.cpp \
10 CodeGenPrepare.cpp \
11 ConstantProp.cpp \
12 CorrelatedValuePropagation.cpp \
13 DCE.cpp \
14 DeadStoreElimination.cpp \
15 EarlyCSE.cpp \
16 FlattenCFGPass.cpp \
17 GlobalMerge.cpp \
18 GVN.cpp \
19 IndVarSimplify.cpp \
20 JumpThreading.cpp \
21 LICM.cpp \
22 LoopDeletion.cpp \
23 LoopIdiomRecognize.cpp \
24 LoopInstSimplify.cpp \
25 LoopRerollPass.cpp \
26 LoopRotation.cpp \
27 LoopStrengthReduce.cpp \
28 LoopUnrollPass.cpp \
29 LoopUnswitch.cpp \
30 LowerAtomic.cpp \
31 MemCpyOptimizer.cpp \
32 PartiallyInlineLibCalls.cpp \
33 Reassociate.cpp \
34 Reg2Mem.cpp \
35 SCCP.cpp \
36 SROA.cpp \
37 SampleProfile.cpp \
38 Scalar.cpp \
39 ScalarReplAggregates.cpp \
40 SimplifyCFGPass.cpp \
41 Sink.cpp \
42 StructurizeCFG.cpp \
43 TailRecursionElimination.cpp
45 .if defined(HOSTLIB)
46 .include <bsd.hostlib.mk>
47 .else
48 .include <bsd.lib.mk>
49 .endif