c39bb7bdbe9374fe22a55fb9c9e79989dbd5241e
[cacao.git] / src / vm / jit / i386 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 557 2003-11-02 22:51:59Z 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         methodtable.c \
16         methodtable.h \
17         types.h \
18         threads.h \
19         dis-asm.h \
20         bfd.h
21
22 noinst_LIBRARIES = libarch.a
23
24 libarch_a_SOURCES = asmpart.S codegen.c disass.c i386-dis.c dis-buf.c methodtable.c
25
26 %.o: %.S
27         $(COMPILE) -c $<
28
29
30 ## Local variables:
31 ## mode: Makefile
32 ## indent-tabs-mode: t
33 ## c-basic-offset: 4
34 ## tab-width: 8
35 ## compile-command: "automake --add-missing"
36 ## End: