Merged with tip.
[cacao.git] / src / vm / jit / powerpc64 / Makefile.am
1 ## src/vm/jit/powerpc64/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005, 2006, 2007, 2008
4 ## CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO
5 ##
6 ## This file is part of CACAO.
7 ##
8 ## This program is free software; you can redistribute it and/or
9 ## modify it under the terms of the GNU General Public License as
10 ## published by the Free Software Foundation; either version 2, or (at
11 ## your option) any later version.
12 ##
13 ## This program is distributed in the hope that it will be useful, but
14 ## WITHOUT ANY WARRANTY; without even the implied warranty of
15 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 ## General Public License for more details.
17 ##
18 ## You should have received a copy of the GNU General Public License
19 ## along with this program; if not, write to the Free Software
20 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 ## 02110-1301, USA.
22
23
24 DIST_SUBDIRS = \
25         linux 
26
27 SUBDIRS = $(OS_DIR)
28
29 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir) -I$(top_builddir)/src -I$(top_srcdir)/src/vm/jit/$(ARCH_DIR)/$(OS_DIR)
30 AM_CCASFLAGS = $(AM_CPPFLAGS)
31
32 LIBS =
33
34 noinst_HEADERS = \
35         arch.h \
36         machine-instr.h
37
38 noinst_LTLIBRARIES = libarch.la
39
40 if ENABLE_DISASSEMBLER
41 DISASS_SOURCES = \
42         disass.c
43 endif
44
45 libarch_la_SOURCES = \
46         asmpart.S \
47         codegen.c \
48         codegen.h \
49         $(DISASS_SOURCES) \
50         emit.c \
51         patcher.c \
52         \
53         md-trap.h \
54         md.c \
55         md.h
56
57 libarch_la_LIBADD = \
58         $(OS_DIR)/libmd.la
59
60 $(srcdir)/asmpart.S: $(top_builddir)/config.h
61
62
63 ## Local variables:
64 ## mode: Makefile
65 ## indent-tabs-mode: t
66 ## c-basic-offset: 4
67 ## tab-width: 8
68 ## compile-command: "automake --add-missing"
69 ## End: