Major file restructuring.
[cacao.git] / jit / powerpc / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 568 2003-11-06 14:42:16Z twisti $
4
5
6 INCLUDES = -I$(top_srcdir)/jit
7
8 EXTRA_DIST = \
9         asmpart.S \
10         codegen.c \
11         codegen.h \
12         dis-asm.h \
13         disass.c \
14         disass.h \
15         native-math.h \
16         ppc-dis.c \
17         ppc-opc.c
18         ppc.h \
19         types.h
20
21 noinst_LIBRARIES = libarch.a
22
23 libarch_a_SOURCES = asmpart.S codegen.c disass.c ppc-dis.c ppc-opc.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: