root/trunk/matml/src/sphlow/makefile

Revision 148, 1.1 kB (checked in by powell, 7 years ago)

New Sphlow Java applet.

  • Property svn:keywords set to Author Date Id Revision
Line 
1# A crude makefile for the Sphlow java classes- finishes by starting Netscape.
2
3all: CmdLineArgException.class PlotDataException.class PlotPoint.class PlotBox.class Plot.class DiamCalculator.class PlotPanel.class PlotSpecial.class BaseControls.class Sphlow.class
4# /usr/site/lib/netscape405/
5        netscape http://www.ctcms.nist.gov/~powell/Java/
6
7# First the ptplot package classes, removed from the package
8CmdLineArgException.class: CmdLineArgException.java
9        javac CmdLineArgException.java
10PlotDataException.class: PlotDataException.java
11        javac PlotDataException.java
12PlotPoint.class: PlotPoint.java
13        javac PlotPoint.java
14PlotBox.class: PlotBox.java
15        javac PlotBox.java
16Plot.class: Plot.java
17        javac Plot.java
18
19# Next my little classes which build on ptplot to create Sphlow
20DiamCalculator.class: DiamCalculator.java
21        javac DiamCalculator.java
22PlotPanel.class: PlotPanel.java
23        javac PlotPanel.java
24PlotSpecial.class: PlotSpecial.java
25        javac PlotSpecial.java
26BaseControls.class: BaseControls.java
27        javac BaseControls.java
28Sphlow.class: Sphlow.java
29        javac Sphlow.java
30
31clean:
32        rm *.class *~ core
Note: See TracBrowser for help on using the browser.