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