* src/vm/primitive.c: Removed.
[cacao.git] / src / vm / Makefile.am
1 ## src/vm/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 2007, 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 -I$(top_srcdir)/contrib/vmlog -I$(top_srcdir)/src/native
25
26 LIBS =
27
28 SUBDIRS = jit
29
30 if ENABLE_ASSERTION
31 ASSERTION_SOURCES = \
32         assertion.c \
33         assertion.h
34 endif
35
36 if ENABLE_CYCLES_STATS
37 CYCLES_STATS_SOURCES = \
38         cycles-stats.c \
39         cycles-stats.h
40 endif
41
42 noinst_HEADERS = \
43         global.h \
44         types.h
45
46 noinst_LTLIBRARIES = \
47         libvm.la
48
49 libvm_la_SOURCES = \
50         $(ASSERTION_SOURCES) \
51         access.c \
52         access.h \
53         array.c \
54         array.h \
55         builtin.c \
56         builtin.h \
57         builtintable.inc \
58         $(CYCLES_STATS_SOURCES) \
59         exceptions.c \
60         exceptions.h \
61         finalizer.c \
62         finalizer.h \
63         initialize.c \
64         initialize.h \
65         jit_interface.h \
66         package.cpp \
67         package.hpp \
68         primitive.cpp \
69         primitive.hpp \
70         properties.c \
71         properties.h \
72         resolve.c \
73         resolve.h \
74         signal.c \
75         signallocal.h \
76         string.c \
77         stringlocal.h \
78         vm.c \
79         vm.h
80
81 libvm_la_LIBADD = \
82         jit/libjit.la
83
84
85 ## Local variables:
86 ## mode: Makefile
87 ## indent-tabs-mode: t
88 ## c-basic-offset: 4
89 ## tab-width: 8
90 ## compile-command: "automake --add-missing"
91 ## End: