Removed deleted native-math.h
[cacao.git] / src / vm / jit / i386 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1350 2004-07-22 22:38:12Z twisti $
4
5
6 INCLUDES = -I$(top_srcdir)
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         emitfuncs.c \
17         emitfuncs.h \
18         machine-instr.h \
19         types.h
20
21 noinst_LIBRARIES = libarch.a
22
23 libarch_a_SOURCES = \
24         asmpart.S \
25         codegen.c \
26         dis-buf.c \
27         disass.c \
28         emitfuncs.c \
29         i386-dis.c
30
31 asmpart.o: asmpart.S $(top_srcdir)/config.h offsets.h
32         $(COMPILE) -c $<
33
34 #offsets.h: $(top_srcdir)/genoffsets $(top_srcdir)/config.h
35 offsets.h: $(top_srcdir)/config.h $(top_srcdir)/global.h $(top_srcdir)/threads/thread.h
36         $(COMPILE) -o $(top_srcdir)/genoffsets $(top_srcdir)/genoffsets.c
37         $(top_srcdir)/genoffsets > offsets.h
38
39
40 ## Local variables:
41 ## mode: Makefile
42 ## indent-tabs-mode: t
43 ## c-basic-offset: 4
44 ## tab-width: 8
45 ## compile-command: "automake --add-missing"
46 ## End: