* src/vm/jit/jit.cpp: Eliminate one instance of useless cache flushing.
[cacao.git] / src / vm / jit / x86_64 / Makefile.am
1 ## src/vm/jit/x86_64/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 -I$(top_builddir)/src
25 AM_CCASFLAGS = $(AM_CPPFLAGS) $(AM_LDFLAGS)
26
27 LIBS =
28
29 DIST_SUBDIRS = \
30         freebsd \
31         linux \
32         solaris
33
34 SUBDIRS = $(OS_DIR)
35
36 noinst_HEADERS = \
37         arch.h \
38         \
39         md-asm.h \
40         md-atomic.hpp
41
42 noinst_LTLIBRARIES = libarch.la
43
44 if ENABLE_DISASSEMBLER
45 DISASS_SOURCES = \
46         disass.c
47 endif
48
49 libarch_la_SOURCES = \
50         asmpart.S \
51         codegen.c \
52         codegen.h \
53         $(DISASS_SOURCES) \
54         emit.c \
55         emit.h \
56         patcher.c \
57         \
58         md-abi.c \
59         md-abi.h \
60         md-stubs.hpp \
61         md-trap.h \
62         md.c \
63         md.h
64
65 libarch_la_LIBADD = \
66         $(OS_DIR)/libmd.la
67
68 $(srcdir)/asmpart.S: $(top_builddir)/config.h
69
70
71 ## Local variables:
72 ## mode: Makefile
73 ## indent-tabs-mode: t
74 ## c-basic-offset: 4
75 ## tab-width: 8
76 ## compile-command: "automake --add-missing"
77 ## End: