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