Removed methodtable.* entries.
[cacao.git] / src / vm / jit / x86_64 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1123 2004-06-03 20:44:56Z twisti $
4
5
6 INCLUDES = -I$(top_srcdir)/jit
7
8 EXTRA_DIST = \
9         asmpart.S \
10         disass.c \
11         disass.h \
12         native-math.h \
13         codegen.c \
14         codegen.h \
15         types.h \
16         dis-asm.h \
17         bfd.h
18
19 noinst_LIBRARIES = libarch.a
20
21 libarch_a_SOURCES = asmpart.S codegen.c disass.c i386-dis.c dis-buf.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: