* createnativestub: Local references changes.
[cacao.git] / src / vm / jit / Makefile.am
1 ## src/vm/jit/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4 ## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5 ## C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6 ## 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., 59 Temple Place - Suite 330, Boston, MA
23 ## 02111-1307, USA.
24 ##
25 ## Contact: cacao@complang.tuwien.ac.at
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## Changes:
30 ##
31 ## $Id: Makefile.am 3312 2005-09-29 14:29:31Z twisti $
32
33 ## Process this file with automake to produce Makefile.in
34
35 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR) -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR)
36
37 SUBDIRS = loop tools verify
38
39 DIST_SUBDIRS = \
40         inline \
41         loop \
42         schedule \
43         tools \
44         verify \
45         intrp \
46         alpha \
47         i386 \
48         mips \
49         powerpc \
50         x86_64
51
52 if ENABLE_INTRP
53 SUBDIRS += intrp
54 INTRP_LIB = intrp/libintrp.la
55 else
56 SUBDIRS += $(ARCH_DIR)
57 ARCH_LIB = $(ARCH_DIR)/libarch.la
58 endif
59
60 if USE_INLINING
61 SUBDIRS += inline
62 INLINE_LIB = inline/libinline.la
63 endif
64
65 if USE_SCHEDULER
66 SUBDIRS += schedule
67 SCHEDULE_LIB = schedule/libschedule.la
68 endif
69
70 noinst_HEADERS = \
71         asmpart.h \
72         codegen.inc \
73         codegen.inc.h \
74         lsra.inc \
75         lsra.h \
76         patcher.h \
77         reg.inc \
78         reg.h
79
80 noinst_LTLIBRARIES = libjit.la
81
82 libjit_la_SOURCES = \
83         helper.c \
84         helper.h \
85         jit.c \
86         jit.h \
87         parse.c \
88         parse.h \
89         stack.c \
90         stack.h \
91         stacktrace.c \
92         stacktrace.h
93
94 libjit_la_LIBADD = \
95         $(INLINE_LIB) \
96         loop/libloop.la \
97         $(SCHEDULE_LIB) \
98         verify/libverify.la \
99         $(INTRP_LIB) \
100         $(ARCH_LIB)
101
102
103 ## Local variables:
104 ## mode: Makefile
105 ## indent-tabs-mode: t
106 ## c-basic-offset: 4
107 ## tab-width: 8
108 ## compile-command: "automake --add-missing"
109 ## End: