* src/vm/jit/powerpc/linux/Makefile.am (LIBS): Added defined empty, as
[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 4563 2006-03-06 13:03:05Z 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 = libvmcore.la libvm.la
58
59 libvmcore_la_SOURCES = \
60         access.c \
61         access.h \
62         builtin.c \
63         builtin.h \
64         builtintable.inc \
65         class.c \
66         class.h \
67         classcache.c \
68         classcache.h \
69         descriptor.c \
70         descriptor.h \
71         field.c \
72         field.h \
73         finalizer.c \
74         finalizer.h \
75         hashtable.c \
76         hashtable.h \
77         initialize.c \
78         initialize.h \
79         linker.c \
80         linker.h \
81         loader.c \
82         loader.h \
83         method.c \
84         method.h \
85         options.c \
86         options.h \
87         properties.c \
88         properties.h \
89         references.h \
90         resolve.c \
91         resolve.h \
92         $(STATISTICS_OBJ) \
93         signal.c \
94         signallocal.h \
95         string.c \
96         stringlocal.h \
97         suck.c \
98         suck.h \
99         utf8.c \
100         utf8.h \
101         $(ZLIB_OBJ)
102
103 libvm_la_SOURCES = \
104         exceptions.c \
105         exceptions.h \
106         vm.c \
107         vm.h
108
109 libvm_la_LIBADD = \
110         libvmcore.la \
111         jit/libjit.la
112
113
114 ## Local variables:
115 ## mode: Makefile
116 ## indent-tabs-mode: t
117 ## c-basic-offset: 4
118 ## tab-width: 8
119 ## compile-command: "automake --add-missing"
120 ## End: