Native threads almost working
[cacao.git] / src / vm / jit / i386 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 991 2004-03-29 11:22:34Z stefan $
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         machine-instr.h \
17         methodtable.c \
18         methodtable.h \
19         native-math.h \
20         types.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: