~ubuntu-branches/ubuntu/intrepid/plplot/intrepid

« back to all changes in this revision

Viewing changes to examples/java/Makefile.examples.in

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2006-11-04 10:19:34 UTC
  • mfrom: (2.1.8 edgy)
  • Revision ID: james.westby@ubuntu.com-20061104101934-mlirvdg4gpwi6i5q
Tags: 5.6.1-10
* Orphaning the package
* debian/control: Changed the maintainer to the Debian QA Group

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# examples.class/Makefile.examples.in for PLplot
 
2
###
 
3
### Process this file with configure to produce Makefile.examples
 
4
###
 
5
# Copyright (C) 2004  Andrew Ross
 
6
#
 
7
# This file is part of PLplot.
 
8
#
 
9
# PLplot is free software; you can redistribute it and/or modify
 
10
# it under the terms of the GNU Library General Public License as published by
 
11
# the Free Software Foundation; version 2 of the License.
 
12
#
 
13
# PLplot is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU Library General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Library General Public License
 
19
# along with the file PLplot; if not, write to the Free Software
 
20
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
 
21
 
 
22
JAVAC = @JAVAC@
 
23
PLPLOT_CLASSPATH = @JAVADATA_HARDDIR@/plplot.jar
 
24
 
 
25
example_classes = \
 
26
        x01.class \
 
27
        x02.class \
 
28
        x03.class \
 
29
        x04.class \
 
30
        x05.class \
 
31
        x06.class \
 
32
        x07.class \
 
33
        x08.class \
 
34
        x09.class \
 
35
        x10.class \
 
36
        x11.class \
 
37
        x12.class \
 
38
        x13.class \
 
39
        x14.class \
 
40
        x15.class \
 
41
        x16.class \
 
42
        x17.class \
 
43
        x18.class \
 
44
        x19.class \
 
45
        x22.class \
 
46
        x23.class
 
47
 
 
48
all: $(example_classes)
 
49
 
 
50
clean:
 
51
        rm -rf plplot $(example_classes)
 
52
 
 
53
.java.class:
 
54
        $(JAVAC) $(AM_JAVACFLAGS) $(JAVACFLAGS) $< -d . -classpath $(PLPLOT_CLASSPATH)
 
55
        cp plplot/examples/$@ .
 
56
 
 
57
.SUFFIXES: .java .class