* src/vmcore/resolve.c: Moved back to src/vm/resolve.c.
[cacao.git] / src / vmcore / Makefile.am
1 ## src/vmcore/Makefile.am
2 ##
3 ## Copyright (C) 2007 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 ## $Id: Makefile.am 6216 2006-12-18 18:21:37Z twisti $
26
27 ## Process this file with automake to produce Makefile.in
28
29 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR)
30
31 LIBS =
32
33 if ENABLE_JAVASE
34 ANNOTATION_SOURCES = \
35         annotation.c \
36         annotation.h
37
38 STACKMAP_SOURCES = \
39         stackmap.c \
40         stackmap.h
41 endif
42
43 if ENABLE_RT_TIMING
44 RT_TIMING_SOURCES = \
45         rt-timing.c \
46         rt-timing.h
47 endif
48
49 if ENABLE_STATISTICS
50 STATISTICS_SOURCES = \
51         statistics.c \
52         statistics.h
53 endif
54
55 if ENABLE_ZLIB
56 ZLIB_SOURCES = \
57         zip.c \
58         zip.h
59 endif
60
61 noinst_LTLIBRARIES = \
62         libvmcore.la
63
64 libvmcore_la_SOURCES = \
65         $(ANNOTATION_SOURCES) \
66         class.c \
67         class.h \
68         classcache.c \
69         classcache.h \
70         descriptor.c \
71         descriptor.h \
72         field.c \
73         field.h \
74         linker.c \
75         linker.h \
76         loader.c \
77         loader.h \
78         method.c \
79         method.h \
80         options.c \
81         options.h \
82         references.h \
83         $(RT_TIMING_SOURCES) \
84         $(STACKMAP_SOURCES) \
85         $(STATISTICS_SOURCES) \
86         suck.c \
87         suck.h \
88         utf8.c \
89         utf8.h \
90         $(ZLIB_SOURCES)
91
92
93 ## Local variables:
94 ## mode: Makefile
95 ## indent-tabs-mode: t
96 ## c-basic-offset: 4
97 ## tab-width: 8
98 ## compile-command: "automake --add-missing"
99 ## End: