* src/vm/Makefile.am (noinst_LTLIBRARIES): Reformatted.
[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 4693 2006-03-28 10:42:04Z twisti $
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_ZLIB
48 ZLIB_OBJ = \
49         zip.c \
50         zip.h
51 endif
52
53 noinst_HEADERS = \
54         global.h \
55         types.h
56
57 noinst_LTLIBRARIES = \
58         libvmcore.la \
59         libvm.la
60
61 libvmcore_la_SOURCES = \
62         access.c \
63         access.h \
64         builtin.c \
65         builtin.h \
66         builtintable.inc \
67         class.c \
68         class.h \
69         classcache.c \
70         classcache.h \
71         descriptor.c \
72         descriptor.h \
73         field.c \
74         field.h \
75         finalizer.c \
76         finalizer.h \
77         hashtable.c \
78         hashtable.h \
79         initialize.c \
80         initialize.h \
81         linker.c \
82         linker.h \
83         loader.c \
84         loader.h \
85         method.c \
86         method.h \
87         options.c \
88         options.h \
89         properties.c \
90         properties.h \
91         references.h \
92         resolve.c \
93         resolve.h \
94         $(STATISTICS_OBJ) \
95         signal.c \
96         signallocal.h \
97         string.c \
98         stringlocal.h \
99         suck.c \
100         suck.h \
101         utf8.c \
102         utf8.h \
103         $(ZLIB_OBJ)
104
105 libvm_la_SOURCES = \
106         exceptions.c \
107         exceptions.h \
108         vm.c \
109         vm.h
110
111 libvm_la_LIBADD = \
112         libvmcore.la \
113         jit/libjit.la
114
115
116 ## Local variables:
117 ## mode: Makefile
118 ## indent-tabs-mode: t
119 ## c-basic-offset: 4
120 ## tab-width: 8
121 ## compile-command: "automake --add-missing"
122 ## End: