* Removed all Id tags.
[cacao.git] / src / vm / jit / optimizing / Makefile.am
1 ## src/vm/jit/optimizing/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4 ## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5 ## C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6 ## Institut f. Computersprachen - TU Wien
7 ##
8 ## This file is part of CACAO.
9 ##
10 ## This program is free software; you can redistribute it and/or
11 ## modify it under the terms of the GNU General Public License as
12 ## published by the Free Software Foundation; either version 2, or (at
13 ## your option) any later version.
14 ##
15 ## This program is distributed in the hope that it will be useful, but
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ## General Public License for more details.
19 ##
20 ## You should have received a copy of the GNU General Public License
21 ## along with this program; if not, write to the Free Software
22 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
23 ## 02111-1307, USA.
24
25
26 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR) -I$(top_builddir)/src
27
28 LIBS =
29
30 if ENABLE_IFCONV
31 IFCONV_SOURCES = \
32         ifconv.c \
33         ifconv.h
34 endif
35
36 if ENABLE_PROFILING
37 PROFILE_SOURCES = \
38         profile.c \
39         profile.h
40
41 REORDER_SOURCES = \
42         reorder.c \
43         reorder.h
44 endif
45
46 if ENABLE_THREADS
47 RECOMPILE_SOURCES = \
48         recompile.c \
49         recompile.h
50 endif
51
52 if ENABLE_SSA
53 SSA_SOURCES = \
54         lsra.c \
55         lsra.h \
56         ssa.c \
57         ssa.h \
58         graph.c \
59         graph.h \
60         dominators.c \
61         dominators.h \
62         lifetimes.c \
63         lifetimes.h
64 endif
65
66 noinst_LTLIBRARIES = \
67         liboptimizing.la
68
69 liboptimizing_la_SOURCES = \
70         $(IFCONV_SOURCES) \
71         $(PROFILE_SOURCES) \
72         $(RECOMPILE_SOURCES) \
73         $(REORDER_SOURCES) \
74         $(SSA_SOURCES)
75
76
77 ## Local variables:
78 ## mode: Makefile
79 ## indent-tabs-mode: t
80 ## c-basic-offset: 4
81 ## tab-width: 8
82 ## compile-command: "automake --add-missing"
83 ## End: