* src/vmcore/linker.c (build_display_inner): Use MNEW instead of malloc.
[cacao.git] / src / vm / jit / arm / Makefile.am
1 ## src/vm/jit/arm/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
30 AM_CCASFLAGS = $(AM_CPPFLAGS)
31
32 noinst_HEADERS = \
33         arch.h \
34         machine-instr.h \
35         md-asm.h
36
37 noinst_LTLIBRARIES = libarch.la
38
39 if ENABLE_DISASSEMBLER
40 DISASS_SOURCES = \
41         disass.c
42 endif
43
44 libarch_la_SOURCES = \
45         asmpart.S \
46         codegen.c \
47         codegen.h \
48         $(DISASS_SOURCES) \
49         emit.c \
50         patcher.c \
51         \
52         md-abi.c \
53         md-abi.h \
54         md-trap.h \
55         md.c \
56         md.h
57
58 libarch_la_LIBADD = \
59         $(OS_DIR)/libmd.la
60
61 $(srcdir)/asmpart.S: $(top_builddir)/config.h
62
63
64 ## Local variables:
65 ## mode: Makefile
66 ## indent-tabs-mode: t
67 ## c-basic-offset: 4
68 ## tab-width: 8
69 ## compile-command: "automake --add-missing"
70 ## End: