MacOSX threads working (somewhat)
[cacao.git] / src / vm / jit / powerpc / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # $Id: Makefile.am 1073 2004-05-19 23:21:15Z stefan $
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         machine-instr.h \
17         ppc-dis.c \
18         ppc-opc.c
19         ppc.h \
20         types.h
21
22 noinst_LIBRARIES = libarch.a
23
24 libarch_a_SOURCES = asmpart.S codegen.c disass.c ppc-dis.c ppc-opc.c
25
26 %.o: %.S
27         $(COMPILE) -c $<
28
29
30 ## Local variables:
31 ## mode: Makefile
32 ## indent-tabs-mode: t
33 ## c-basic-offset: 4
34 ## tab-width: 8
35 ## compile-command: "automake --add-missing"
36 ## End: