Fix include paths to support build directories.
[cacao.git] / src / vm / jit / loop / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1141 2004-06-05 23:19:24Z twisti $
4
5 INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/jit/@ARCH_DIR@
6
7 EXTRA_DIST = \
8         graph.c \
9         loop.c \
10         loop.h \
11         analyze.c \
12         tracing.c
13
14 noinst_HEADERS = \
15         graph.h \
16         analyze.h \
17         tracing.h
18
19 noinst_LIBRARIES = libloop.a
20
21 libloop_a_SOURCES = loop.c analyze.c graph.c tracing.c
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: