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