* src/vm/jit/powerpc64: Merged changes from r5403 to r5548 from trunk.
[cacao.git] / src / vm / Makefile.am
1 ## src/vm/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006 R. Grafl, A. Krall, C. Kruegel,
4 ## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5 ## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6 ## J. Wenninger, 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., 51 Franklin Street, Fifth Floor, Boston, MA
23 ## 02110-1301, USA.
24 ##
25 ## Contact: cacao@cacaojvm.org
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## Changes:
30 ##
31 ## $Id: Makefile.am 4809 2006-04-21 21:36:54Z edwin $
32
33 ## Process this file with automake to produce Makefile.in
34
35 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR)
36
37 LIBS =
38
39 SUBDIRS = jit
40
41 if ENABLE_STATISTICS
42 STATISTICS_OBJ = \
43         statistics.c \
44         statistics.h
45 endif
46
47 if ENABLE_RT_TIMING
48 RT_TIMING_OBJ = \
49         rt-timing.c
50 endif
51
52 if ENABLE_CYCLES_STATS
53 CYCLES_STATS_SOURCE = \
54         cycles-stats.c \
55         cycles-stats.h
56 endif
57
58 if ENABLE_ZLIB
59 ZLIB_OBJ = \
60         zip.c \
61         zip.h
62 endif
63
64 noinst_HEADERS = \
65         global.h \
66         types.h
67
68 noinst_LTLIBRARIES = \
69         libvmcore.la \
70         libvm.la
71
72 libvmcore_la_SOURCES = \
73         access.c \
74         access.h \
75         builtin.c \
76         builtin.h \
77         builtintable.inc \
78         class.c \
79         class.h \
80         classcache.c \
81         classcache.h \
82         $(CYCLES_STATS_SOURCE) \
83         descriptor.c \
84         descriptor.h \
85         field.c \
86         field.h \
87         finalizer.c \
88         finalizer.h \
89         hashtable.c \
90         hashtable.h \
91         initialize.c \
92         initialize.h \
93         linker.c \
94         linker.h \
95         loader.c \
96         loader.h \
97         method.c \
98         method.h \
99         options.c \
100         options.h \
101         properties.c \
102         properties.h \
103         references.h \
104         resolve.c \
105         resolve.h \
106         $(RT_TIMING_OBJ) \
107         rt-timing.h \
108         $(STATISTICS_OBJ) \
109         signal.c \
110         signallocal.h \
111         string.c \
112         stringlocal.h \
113         suck.c \
114         suck.h \
115         utf8.c \
116         utf8.h \
117         $(ZLIB_OBJ)
118
119 libvm_la_SOURCES = \
120         exceptions.c \
121         exceptions.h \
122         vm.c \
123         vm.h
124
125 libvm_la_LIBADD = \
126         libvmcore.la \
127         jit/libjit.la
128
129
130 ## Local variables:
131 ## mode: Makefile
132 ## indent-tabs-mode: t
133 ## c-basic-offset: 4
134 ## tab-width: 8
135 ## compile-command: "automake --add-missing"
136 ## End: