Cleaned up.
[cacao.git] / src / vm / jit / i386 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 590 2003-11-09 19:44:36Z twisti $
4
5
6 INCLUDES = -I$(top_srcdir)/jit
7
8 EXTRA_DIST = \
9         asmpart.S \
10         bfd.h \
11         codegen.c \
12         codegen.h \
13         dis-asm.h \
14         disass.c \
15         disass.h \
16         methodtable.c \
17         methodtable.h \
18         native-math.h \
19         types.h
20
21 noinst_LIBRARIES = libarch.a
22
23 libarch_a_SOURCES = asmpart.S codegen.c disass.c i386-dis.c dis-buf.c methodtable.c
24
25 %.o: %.S
26         $(COMPILE) -c $<
27
28
29 ## Local variables:
30 ## mode: Makefile
31 ## indent-tabs-mode: t
32 ## c-basic-offset: 4
33 ## tab-width: 8
34 ## compile-command: "automake --add-missing"
35 ## End: