Fix include paths to support build directories.
[cacao.git] / src / vm / jit / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1145 2004-06-05 23:57:56Z 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 all-local:
39         $(MAKE) $(AM_MAKEFLAGS) -C .. jit/@ARCH_DIR@/offsets.h
40
41 ## Local variables:
42 ## mode: Makefile
43 ## indent-tabs-mode: t
44 ## c-basic-offset: 4
45 ## tab-width: 8
46 ## compile-command: "automake --add-missing"
47 ## End: