49b00bdd09e225bd3b6141a205c2a92bf1374afa
[cacao.git] / src / vm / jit / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1621 2004-11-30 13:06:55Z twisti $
4
5 INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/src/vm/jit/@ARCH_DIR@
6
7 SUBDIRS = inline loop verify tools @ARCH_DIR@
8
9 DIST_SUBDIRS = inline loop verify tools alpha i386 mips powerpc x86_64
10
11 noinst_LIBRARIES = libjit.a
12
13 libjit_a_SOURCES = \
14         jit.c \
15         parse.c \
16         stack.c
17
18 libjit_a_LIBADD = \
19         inline/libinline.a \
20         loop/libloop.a \
21         verify/libverify.a
22
23
24 ## Local variables:
25 ## mode: Makefile
26 ## indent-tabs-mode: t
27 ## c-basic-offset: 4
28 ## tab-width: 8
29 ## compile-command: "automake --add-missing"
30 ## End: