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