- moved defines into header
[cacao.git] / src / vm / jit / x86_64 / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1266 2004-07-01 20:38:16Z 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         native-math.h \
19         types.h
20
21 noinst_LIBRARIES = libarch.a
22
23 libarch_a_SOURCES = asmpart.S codegen.c disass.c emitfuncs.c i386-dis.c dis-buf.c
24
25 %.o: %.S
26         $(COMPILE) -c $<
27
28
29 ## Local variables:
30 ## mode: Makefile
31 ## indent-tabs-mode: t
32 ## c-basic-offset: 4
33 ## tab-width: 8
34 ## compile-command: "automake --add-missing"
35 ## End: