* Updated header: Added 2006. Changed address of FSF. Changed email
[cacao.git] / src / vm / jit / intrp / Makefile.am
1 ## src/vm/jit/intrp/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 4357 2006-01-22 23:33:38Z 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) -I$(top_builddir) -I$(top_builddir)/src
36
37 EXTRA_DIST = \
38         java.vmg \
39         gray.fs \
40         prims2x.fs \
41         vmgenx \
42         \
43         $(BUILT_SOURCES)
44
45 noinst_HEADERS = \
46         engine.c
47
48 BUILT_SOURCES = \
49         java-disasm.i \
50         java-gen.i \
51         java-labels.i \
52         java-names.i \
53         java-peephole.i \
54         java-profile.i \
55         java-superend.i \
56         java-vm.i
57
58 CLEANFILES = \
59         $(BUILT_SOURCES)
60
61 noinst_LTLIBRARIES = libintrp.la
62
63 libintrp_la_SOURCES = \
64         asmpart.c \
65         codegen.c \
66         codegen.h \
67         disasm.c \
68         disass.c \
69         dynamic-super.c \
70         engine1.c \
71         engine2.c \
72         intrp.h \
73         md.c \
74         patcher.c \
75         peephole.c
76
77 $(BUILT_SOURCES): java.vmg prims2x.fs vmgenx
78         $(srcdir)/vmgenx $(srcdir)/java.vmg && touch java-peephole.i
79         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
80
81
82 ## Local variables:
83 ## mode: Makefile
84 ## indent-tabs-mode: t
85 ## c-basic-offset: 4
86 ## tab-width: 8
87 ## compile-command: "automake --add-missing"
88 ## End: