From 97327f05fc71fb97797f8e12ad1f1941dc774f26 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 10 Oct 2004 22:20:40 +0000 Subject: Initial version of automake Makefile.am file. llvm-svn: 16893 --- llvm/lib/Transforms/Utils/Makefile.am | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 llvm/lib/Transforms/Utils/Makefile.am (limited to 'llvm/lib/Transforms/Utils') diff --git a/llvm/lib/Transforms/Utils/Makefile.am b/llvm/lib/Transforms/Utils/Makefile.am new file mode 100644 index 00000000000..e5a2a667442 --- /dev/null +++ b/llvm/lib/Transforms/Utils/Makefile.am @@ -0,0 +1,32 @@ +#===-- lib/Transforms/Utils/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 = libLLVMTransformUtils.a +libexec_PROGRAMS = LLVMTransformUtils.o + +MYSOURCES = \ + BasicBlockUtils.cpp \ + BreakCriticalEdges.cpp \ + CloneFunction.cpp \ + CloneModule.cpp \ + CloneTrace.cpp \ + CodeExtractor.cpp \ + DemoteRegToStack.cpp \ + InlineFunction.cpp \ + Local.cpp \ + PromoteMemoryToRegister.cpp \ + SimplifyCFG.cpp \ + UnifyFunctionExitNodes.cpp \ + ValueMapper.cpp + +libLLVMTransformUtils_a_SOURCES = $(MYSOURCES) +LLVMTransformUtils_o_SOURCES = $(MYSOURCES) +LIBS= -- cgit v1.2.3