8a06b6060421026fffee1b9181a4496b273f6727
[cacao.git] / tests / regression / codepatching / Makefile.am
1 ## tests/regression/codepatching/Makefile.am
2 ##
3 ## Copyright (C) 1996-2005 R. Grafl, A. Krall, C. Kruegel, C. Oates,
4 ## R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner,
5 ## C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger,
6 ## 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., 59 Temple Place - Suite 330, Boston, MA
23 ## 02111-1307, USA.
24 ##
25 ## Contact: cacao@complang.tuwien.ac.at
26 ##
27 ## Authors: Christian Thalinger
28 ##
29 ## Changes:
30 ##
31 ## $Id: Makefile.am 4348 2006-01-22 21:38:47Z twisti $
32
33 ## Process this file with automake to produce Makefile.in
34
35 JAVA      = $(top_builddir)/src/cacao/cacao
36 JAVAFLAGS = -Xbootclasspath:$(top_builddir)/src/lib/vm.zip:$(CLASSPATH_PREFIX)/share/classpath/$(GLIBJZ)
37
38 SOURCE_FILES = \
39         $(srcdir)/checkcastC.java \
40         $(srcdir)/checkcastI.java \
41         $(srcdir)/getfieldD.java \
42         $(srcdir)/getfieldF.java \
43         $(srcdir)/getfieldI.java \
44         $(srcdir)/getfieldJ.java \
45         $(srcdir)/getfieldL.java \
46         $(srcdir)/getstaticD.java \
47         $(srcdir)/getstaticF.java \
48         $(srcdir)/getstaticI.java \
49         $(srcdir)/getstaticJ.java \
50         $(srcdir)/getstaticL.java \
51         $(srcdir)/instanceofC.java \
52         $(srcdir)/instanceofI.java \
53         $(srcdir)/invokespecial.java \
54         $(srcdir)/invokestatic.java \
55         $(srcdir)/multianewarray.java \
56         $(srcdir)/newarray.java \
57         $(srcdir)/putfieldconstIF.java \
58         $(srcdir)/putfieldconstJDL.java \
59         $(srcdir)/putfieldD.java \
60         $(srcdir)/putfieldF.java \
61         $(srcdir)/putfieldI.java \
62         $(srcdir)/putfieldJ.java \
63         $(srcdir)/putfieldL.java \
64         $(srcdir)/putstaticD.java \
65         $(srcdir)/putstaticF.java \
66         $(srcdir)/putstaticI.java \
67         $(srcdir)/putstaticJ.java \
68         $(srcdir)/putstaticL.java \
69         $(srcdir)/test.java
70
71 EXTRA_DIST = \
72         $(SOURCE_FILES)
73
74 MAINCLASS = \
75         test.class
76
77 CLASSES = \
78         checkcastC.class \
79         checkcastI.class \
80         getfieldD.class \
81         getfieldF.class \
82         getfieldI.class \
83         getfieldJ.class \
84         getfieldL.class \
85         getstaticD.class \
86         getstaticF.class \
87         getstaticI.class \
88         getstaticJ.class \
89         getstaticL.class \
90         instanceofC.class \
91         instanceofI.class \
92         invokespecial.class \
93         invokestatic.class \
94         multianewarray.class \
95         newarray.class \
96         putfieldconstIF.class \
97         putfieldconstJDL.class \
98         putfieldD.class \
99         putfieldF.class \
100         putfieldI.class \
101         putfieldJ.class \
102         putfieldL.class \
103         putstaticD.class \
104         putstaticF.class \
105         putstaticI.class \
106         putstaticJ.class \
107         putstaticL.class
108
109 CLEANFILES = \
110         *.class
111
112 check: build
113         @$(JAVA) $(JAVAFLAGS) test
114
115 build:
116         @$(JAVAC) -d . $(SOURCE_FILES)
117
118 remove:
119         $(RM) $(CLASSES)
120
121
122 ## Local variables:
123 ## mode: Makefile
124 ## indent-tabs-mode: t
125 ## c-basic-offset: 4
126 ## tab-width: 8
127 ## compile-command: "automake --add-missing"
128 ## End: