Native threads
[cacao.git] / jit / alpha / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 617 2003-11-13 09:20:03Z stefan $
4
5
6 INCLUDES = -I$(top_srcdir)/jit
7
8 EXTRA_DIST = \
9         asmpart.S \
10         disass.c \
11         disass.h \
12         native-math.h \
13         codegen.c \
14         codegen.h \
15         types.h \
16         sigcontext.h
17
18 noinst_LIBRARIES = libarch.a
19
20 libarch_a_SOURCES = asmpart.S codegen.c disass.c
21
22 %.o: %.S
23         $(COMPILE) -c $<
24
25
26 ## Local variables:
27 ## mode: Makefile
28 ## indent-tabs-mode: t
29 ## c-basic-offset: 4
30 ## tab-width: 8
31 ## compile-command: "automake --add-missing"
32 ## End: