more
[cacao.git] / src / vm / jit / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 618 2003-11-13 09:39:28Z stefan $
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         inline.c \
19         sets.c \
20         sets.h \
21         parseRT.c \
22         parseRTprint.h \
23         parseRTstats.c
24
25 noinst_HEADERS = \
26         parse.h \
27         stack.h \
28         reg.h \
29         inline.h \
30         parseRT.h \
31         parseRTstats.h
32
33 noinst_LIBRARIES = libjit.a
34
35 libjit_a_SOURCES = jit.c parse.c stack.c inline.c sets.c parseRT.c parseRTstats.c
36
37 all-local:
38         $(MAKE) $(AM_MAKEFLAGS) -C .. jit/@ARCH_DIR@/offsets.h
39
40 ## Local variables:
41 ## mode: Makefile
42 ## indent-tabs-mode: t
43 ## c-basic-offset: 4
44 ## tab-width: 8
45 ## compile-command: "automake --add-missing"
46 ## End: