* src/toolbox/list.hpp (DumpList): Made sort function accessible.
[cacao.git] / src / vm / jit / optimizing / Makefile.am
1 ## src/vm/jit/optimizing/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 2007, 2008
4 ## CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5 ##
6 ## This file is part of CACAO.
7 ##
8 ## This program is free software; you can redistribute it and/or
9 ## modify it under the terms of the GNU General Public License as
10 ## published by the Free Software Foundation; either version 2, or (at
11 ## your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful, but
14 ## WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ## General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
21 ## 02111-1307, USA.
22
23
24 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
25
26 LIBS =
27
28 if ENABLE_IFCONV
29 IFCONV_SOURCES = \
30         ifconv.c \
31         ifconv.h
32 endif
33
34 if ENABLE_PROFILING
35 PROFILE_SOURCES = \
36         profile.cpp \
37         profile.hpp
38
39 REORDER_SOURCES = \
40         reorder.c \
41         reorder.h
42 endif
43
44 if ENABLE_THREADS
45 RECOMPILER_SOURCES = \
46         recompiler.cpp \
47         recompiler.hpp
48 endif
49
50 if ENABLE_SSA
51 SSA_SOURCES = \
52         lsra.c \
53         lsra.h \
54         ssa.c \
55         ssa.h \
56         ssa_phi.c \
57         ssa_phi.h \
58         ssa_rename.c \
59         ssa_rename.h \
60         graph.c \
61         graph.h \
62         dominators.cpp \
63         dominators.hpp \
64         lifetimes.c \
65         lifetimes.h \
66         ssa2.c \
67         ssa3.c 
68 endif
69
70 if ENABLE_ESCAPE
71 ESCAPE_SOURCES = \
72         bytecode_escape.c \
73         escape.h \
74         escape.c
75 endif
76
77 noinst_LTLIBRARIES = \
78         liboptimizing.la
79
80 liboptimizing_la_SOURCES = \
81         $(IFCONV_SOURCES) \
82         $(PROFILE_SOURCES) \
83         $(RECOMPILER_SOURCES) \
84         $(REORDER_SOURCES) \
85         $(SSA_SOURCES) \
86         $(ESCAPE_SOURCES)
87
88
89 ## Local variables:
90 ## mode: Makefile
91 ## indent-tabs-mode: t
92 ## c-basic-offset: 4
93 ## tab-width: 8
94 ## compile-command: "automake --add-missing"
95 ## End: