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