Fix include paths to support build directories.
[cacao.git] / jit / alpha / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1146 2004-06-06 12:48:10Z twisti $
4
5
6 INCLUDES = -I$(top_srcdir)
7
8 EXTRA_DIST = \
9         asmpart.S \
10         disass.c \
11         disass.h \
12         native-math.h \
13         machine-instr.h \
14         codegen.c \
15         codegen.h \
16         types.h \
17         sigcontext.h
18
19 noinst_LIBRARIES = libarch.a
20
21 libarch_a_SOURCES = asmpart.S codegen.c disass.c
22
23 %.o: %.S
24         $(COMPILE) -c $<
25
26
27 ## Local variables:
28 ## mode: Makefile
29 ## indent-tabs-mode: t
30 ## c-basic-offset: 4
31 ## tab-width: 8
32 ## compile-command: "automake --add-missing"
33 ## End: