diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-10-10 20:43:57 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-10-10 20:43:57 +0000 |
commit | b84cbf272560ea4a9662d3d4db0e1923e3a4adbf (patch) | |
tree | 4fce74b10697f02f1cd0e551fe0d42ba45d9ee00 /llvm/lib/CodeGen/ModuloScheduling | |
parent | 4a69c9d66744110294703ffc5be8b06ec8712434 (diff) | |
download | bcm5719-llvm-b84cbf272560ea4a9662d3d4db0e1923e3a4adbf.tar.gz bcm5719-llvm-b84cbf272560ea4a9662d3d4db0e1923e3a4adbf.zip |
Initial version of automake Makefile.am file.
llvm-svn: 16885
Diffstat (limited to 'llvm/lib/CodeGen/ModuloScheduling')
-rw-r--r-- | llvm/lib/CodeGen/ModuloScheduling/Makefile.am | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/ModuloScheduling/Makefile.am b/llvm/lib/CodeGen/ModuloScheduling/Makefile.am new file mode 100644 index 00000000000..e1fd097d381 --- /dev/null +++ b/llvm/lib/CodeGen/ModuloScheduling/Makefile.am @@ -0,0 +1,19 @@ +#===-- lib/CodeGen/ModuloScheduling/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 + +libexec_PROGRAMS = LLVMModuloScheduling.o + +LLVMModuloScheduling_o_SOURCES = \ + ModuloScheduling.cpp \ + MSchedGraph.cpp \ + MSSchedule.cpp + +LIBS= |