* src/threads/thread.cpp (threads_thread_is_alive): Recognize parked states.
[cacao.git] / src / vm / jit / intrp / Makefile.am
1 ## src/vm/jit/intrp/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_CFLAGS = $(INTRP_CFLAGS)
25 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) -I$(top_builddir)/src
26
27 LIBS =
28
29 EXTRA_DIST = \
30         java.vmg \
31         gray.fs \
32         prims2x.fs \
33         vmgenx
34
35 noinst_HEADERS = \
36         engine.c
37
38 BUILT_SOURCES = \
39         java-disasm.i \
40         java-gen.i \
41         java-labels.i \
42         java-names.i \
43         java-peephole.i \
44         java-profile.i \
45         java-superend.i \
46         java-vm.i
47
48 CLEANFILES = \
49         $(BUILT_SOURCES)
50
51 noinst_LTLIBRARIES = libintrp.la
52
53 libintrp_la_SOURCES = \
54         asmpart.c \
55         codegen.c \
56         codegen.h \
57         disasm.c \
58         disass.c \
59         dynamic-super.c \
60         engine1.c \
61         engine2.c \
62         intrp.h \
63         md.c \
64         patcher.c \
65         peephole.c
66
67 $(BUILT_SOURCES): $(srcdir)/java.vmg $(srcdir)/prims2x.fs $(srcdir)/vmgenx
68         $(SHELL) $(srcdir)/vmgenx $(srcdir)/java.vmg && touch java-peephole.i
69         true #GFORTHPATH=.:/nfs/nfstmp/anton/cacao/:/usr/lib/gforth/site-forth:/usr/share/gforth/site-forth:/usr/lib/gforth/0.6.2:/usr/share/gforth/0.6.2 $(srcdir)/vmgenx $(srcdir)/java.vmg && touch java-peephole.i
70
71
72 ## Local variables:
73 ## mode: Makefile
74 ## indent-tabs-mode: t
75 ## c-basic-offset: 4
76 ## tab-width: 8
77 ## compile-command: "automake --add-missing"
78 ## End: