mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-09 13:33:17 +00:00
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16893 91177308-0d34-0410-b5e6-96231b3b80d8
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
#===-- lib/Transforms/Scalar/Makefile.am -------------------*- Makefile -*--===#
|
|
#
|
|
# The LLVM Compiler Infrastructure
|
|
#
|
|
# This file was developed by Reid Spencer and is distributed under the
|
|
# University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
#
|
|
#===------------------------------------------------------------------------===#
|
|
|
|
include $(top_srcdir)/Makefile.rules.am
|
|
|
|
lib_LIBRARIES = libLLVMScalarOpts.a
|
|
libexec_PROGRAMS = LLVMScalarOpts.o
|
|
|
|
MYSOURCES = \
|
|
ADCE.cpp \
|
|
BasicBlockPlacement.cpp \
|
|
ConstantProp.cpp \
|
|
CorrelatedExprs.cpp \
|
|
DCE.cpp \
|
|
DeadStoreElimination.cpp \
|
|
DecomposeMultiDimRefs.cpp \
|
|
GCSE.cpp \
|
|
IndVarSimplify.cpp \
|
|
InstructionCombining.cpp \
|
|
LICM.cpp \
|
|
LoopSimplify.cpp \
|
|
LoopUnroll.cpp \
|
|
LoopUnswitch.cpp \
|
|
LowerAllocations.cpp \
|
|
LowerConstantExprs.cpp \
|
|
LowerGC.cpp \
|
|
LowerInvoke.cpp \
|
|
LowerPacked.cpp \
|
|
LowerSelect.cpp \
|
|
LowerSwitch.cpp \
|
|
Mem2Reg.cpp \
|
|
PRE.cpp \
|
|
Reassociate.cpp \
|
|
ScalarReplAggregates.cpp \
|
|
SCCP.cpp \
|
|
SimplifyCFG.cpp \
|
|
SymbolStripping.cpp \
|
|
TailDuplication.cpp \
|
|
TailRecursionElimination.cpp
|
|
|
|
libLLVMScalarOpts_a_SOURCES = $(MYSOURCES)
|
|
|
|
LLVMScalarOpts_o_SOURCES = $(MYSOURCES)
|
|
LIBS=
|