* Removed all Id tags.
[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: Edwin Steiner
30
31 ## Process this file with automake to produce Makefile.in
32
33 AM_CFLAGS = $(INTRP_CFLAGS)
34 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
35
36 LIBS =
37
38 EXTRA_DIST = \
39         java.vmg \
40         gray.fs \
41         prims2x.fs \
42         vmgenx \
43         \
44         $(BUILT_SOURCES)
45
46 noinst_HEADERS = \
47         engine.c
48
49 BUILT_SOURCES = \
50         java-disasm.i \
51         java-gen.i \
52         java-labels.i \
53         java-names.i \
54         java-peephole.i \
55         java-profile.i \
56         java-superend.i \
57         java-vm.i
58
59 CLEANFILES = \
60         $(BUILT_SOURCES)
61
62 noinst_LTLIBRARIES = libintrp.la
63
64 libintrp_la_SOURCES = \
65         asmpart.c \
66         codegen.c \
67         codegen.h \
68         disasm.c \
69         disass.c \
70         dynamic-super.c \
71         engine1.c \
72         engine2.c \
73         intrp.h \
74         md.c \
75         patcher.c \
76         peephole.c
77
78 $(BUILT_SOURCES): $(srcdir)/java.vmg $(srcdir)/prims2x.fs $(srcdir)/vmgenx
79         $(srcdir)/vmgenx $(srcdir)/java.vmg && touch java-peephole.i
80         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
81
82
83 ## Local variables:
84 ## mode: Makefile
85 ## indent-tabs-mode: t
86 ## c-basic-offset: 4
87 ## tab-width: 8
88 ## compile-command: "automake --add-missing"
89 ## End: