[llvm-commits] CVS: llvm/lib/Transforms/Scalar/Makefile.am
Reid Spencer
reid at x10sys.com
Sun Oct 10 15:20:28 PDT 2004
Changes in directory llvm/lib/Transforms/Scalar:
Makefile.am added (r1.1)
---
Log message:
Initial version of automake Makefile.am file.
---
Diffs of the changes: (+50 -0)
Index: llvm/lib/Transforms/Scalar/Makefile.am
diff -c /dev/null llvm/lib/Transforms/Scalar/Makefile.am:1.1
*** /dev/null Sun Oct 10 17:20:27 2004
--- llvm/lib/Transforms/Scalar/Makefile.am Sun Oct 10 17:20:17 2004
***************
*** 0 ****
--- 1,50 ----
+ #===-- 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=
More information about the llvm-commits
mailing list