Major file restructuring.
[cacao.git] / src / vm / jit / alpha / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 557 2003-11-02 22:51:59Z twisti $
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         threads.h \
17         sigcontext.h
18
19 noinst_LIBRARIES = libarch.a
20
21 libarch_a_SOURCES = asmpart.S codegen.c disass.c
22
23 %.o: %.S
24         $(COMPILE) -c $<
25
26
27 ## Local variables:
28 ## mode: Makefile
29 ## indent-tabs-mode: t
30 ## c-basic-offset: 4
31 ## tab-width: 8
32 ## compile-command: "automake --add-missing"
33 ## End: