c22eaba43946b5fc015a14736551882ffd6c57aa
[cacao.git] / src / vm / jit / parisc / Makefile.am
1 ## src/vm/jit/parisc/Makefile.am
2 ##
3 ## Copyright (C) 2006, 2007 R. Grafl, A. Krall, C. Kruegel,
4 ## C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring,
5 ## E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich,
6 ## J. Wenninger, Institut f. Computersprachen - TU Wien
7 ##
8 ## This file is part of CACAO.
9 ##
10 ## This program is free software; you can redistribute it and/or
11 ## modify it under the terms of the GNU General Public License as
12 ## published by the Free Software Foundation; either version 2, or (at
13 ## your option) any later version.
14 ##
15 ## This program is distributed in the hope that it will be useful, but
16 ## WITHOUT ANY WARRANTY; without even the implied warranty of
17 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ## General Public License for more details.
19 ##
20 ## You should have received a copy of the GNU General Public License
21 ## along with this program; if not, write to the Free Software
22 ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 ## 02110-1301, USA.
24 ##
25 ## Contact: cacao@cacaojvm.org
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## $Id: Makefile.am 4826 2006-04-24 16:06:16Z twisti $
30
31 ## Process this file with automake to produce Makefile.in
32
33 DIST_SUBDIRS = \
34         linux
35
36 SUBDIRS = $(OS_DIR)
37
38 AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_builddir) -I$(top_builddir)/src
39 AM_CCASFLAGS = $(AM_CPPFLAGS)
40
41 LIBS =
42
43 #BUILT_SOURCES = offsets.h
44
45 #CLEANFILES = offsets.h
46
47 noinst_HEADERS = \
48         arch.h
49
50 #foo = \
51         machine-instr.h \
52         \
53         md-asm.h
54
55 noinst_LTLIBRARIES = libarch.la
56
57 #if ENABLE_DISASSEMBLER
58 #DISASS_SOURCES = \
59         disass.c
60 #endif
61
62 libarch_la_SOURCES = \
63         md.c
64
65 #foo = \
66         asmpart.S \
67         codegen.c \
68         codegen.h \
69         $(DISASS_SOURCES) \
70         emit.c \
71         patcher.c \
72         \
73         md-abi.c \
74         md-abi.h \
75         md.c \
76         md.h
77
78 #libarch_la_LIBADD = \
79         $(OS_DIR)/libmd.la
80
81 #$(srcdir)/asmpart.S: $(top_builddir)/config.h offsets.h
82
83 #offsets.h: $(top_builddir)/src/vm/jit/tools/genoffsets $(top_builddir)/config.h
84         $(top_builddir)/src/vm/jit/tools/genoffsets > offsets.h
85
86
87 ## Local variables:
88 ## mode: Makefile
89 ## indent-tabs-mode: t
90 ## c-basic-offset: 4
91 ## tab-width: 8
92 ## compile-command: "automake --add-missing"
93 ## End: