d1035693cef85a4691175112a7f94d45faa07bff
[cacao.git] / tests / regression / resolving / classes2 / Makefile.am
1 ## tests/regression/resolving/classes2/Makefile.am
2 ##
3 ## Copyright (C) 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 ## $Id: Makefile.am 7433 2007-03-02 19:42:13Z edwin $
26
27 ## Process this file with automake to produce Makefile.in
28
29 SOURCE_FILES = \
30         $(srcdir)/BarPassFoo.java \
31         $(srcdir)/BarUseFoo.java \
32         $(srcdir)/DerivedFoo.java \
33         $(srcdir)/Foo.java
34
35 CLASS_FILES = \
36         BarPassFoo.class \
37         BarUseFoo.class \
38         DerivedFoo.class \
39         Foo.class
40
41 EXTRA_DIST = $(SOURCE_FILES)
42
43 CLEANFILES = \
44         *.class
45
46 check: $(CLASS_FILES)
47
48 $(CLASS_FILES): $(SOURCE_FILES)
49         $(JAVAC) -d . $(SOURCE_FILES)
50
51