* src/native/vm/gnuclasspath/sun_reflect_ConstantPool.c: Moved to .cpp.
[cacao.git] / src / native / vm / gnuclasspath / Makefile.am
1 ## src/native/vm/gnuclasspath/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 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., 51 Franklin Street, Fifth Floor, Boston, MA
21 ## 02110-1301, USA.
22
23
24 AM_CPPFLAGS = -I$(top_srcdir)/src -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 noinst_LTLIBRARIES = \
29         libnativevmcore.la
30
31 if ENABLE_JVMTI
32 lib_LTLIBRARIES = \
33         libjdwp.la
34 endif
35
36 if ENABLE_ANNOTATIONS
37 SUN_REFLECT_SOURCES = \
38         sun_reflect_ConstantPool.cpp
39 endif
40
41 libnativevmcore_la_SOURCES = \
42         gnu_classpath_VMStackWalker.c \
43         gnu_classpath_VMSystemProperties.c \
44         gnu_java_lang_VMCPStringBuilder.c \
45         gnu_java_lang_management_VMClassLoadingMXBeanImpl.c \
46         gnu_java_lang_management_VMMemoryMXBeanImpl.c \
47         gnu_java_lang_management_VMRuntimeMXBeanImpl.c \
48         gnu_java_lang_management_VMThreadMXBeanImpl.c \
49         java_lang_VMClass.c \
50         java_lang_VMClassLoader.c \
51         java_lang_VMObject.c \
52         java_lang_VMRuntime.c \
53         java_lang_VMString.c \
54         java_lang_VMSystem.c \
55         java_lang_VMThread.c \
56         java_lang_VMThrowable.c \
57         java_lang_management_VMManagementFactory.c \
58         java_lang_reflect_VMConstructor.c \
59         java_lang_reflect_VMField.cpp \
60         java_lang_reflect_VMMethod.c \
61         java_lang_reflect_VMProxy.c \
62         java_security_VMAccessController.c \
63         java_util_concurrent_atomic_AtomicLong.c \
64         $(SUN_REFLECT_SOURCES)
65
66 if ENABLE_JVMTI
67 libjdwp_la_SOURCES = \
68         gnu_classpath_jdwp_VMFrame.c \
69         gnu_classpath_jdwp_VMMethod.c \
70         gnu_classpath_jdwp_VMVirtualMachine.c \
71         VMjdwp.c \
72         VMjdwp.h
73 endif
74
75
76 ## Local variables:
77 ## mode: Makefile
78 ## indent-tabs-mode: t
79 ## c-basic-offset: 4
80 ## tab-width: 8
81 ## compile-command: "automake --add-missing"
82 ## End: