Global compiler variables changes.
[cacao.git] / src / vm / jit / x86_64 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1284 2004-07-07 15:56:17Z 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         dis-buf.c \
15         disass.c \
16         disass.h \
17         emitfuncs.c \
18         emitfuncs.h \
19         i386-dis.c \
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)/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: