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