Major file restructuring.
[cacao.git] / src / vm / jit / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $
4
5
6 SUBDIRS = loop @ARCH_DIR@
7 DIST_SUBDIRS = loop alpha i386 mips powerpc x86_64
8
9 INCLUDES = -I$(top_srcdir)/jit/@ARCH_DIR@ -I$(top_srcdir)/jit
10
11 EXTRA_DIST = \
12         jit.c \
13         jit.h \
14         codegen.inc \
15         parse.c \
16         reg.inc \
17         stack.c \
18         jitdef.h \
19         inline.c \
20         sets.c \
21         sets.h \
22         parseRT.c \
23         parseRTprint.h \
24         parseRTstats.c
25
26 noinst_LIBRARIES = libjit.a
27
28 libjit_a_SOURCES = jit.c parse.c stack.c inline.c sets.c parseRT.c parseRTstats.c
29
30
31 ## Local variables:
32 ## mode: Makefile
33 ## indent-tabs-mode: t
34 ## c-basic-offset: 4
35 ## tab-width: 8
36 ## compile-command: "automake --add-missing"
37 ## End: