|
Building JAS YourselfNote: The JAS distribution contains cross-platform jar files which should be all you need to run JAS. Even if you intend to extend JAS yourself you should be able to just use the published APIs to write extensions without having recompile the source yourself. Consequently you should only need to rebuild the JAS source yourself if:
Building JASJAS is now setup to use jmk, a pure-java, cross-platform make-like utility. When you access the full JAS source tree from CVS you will also get the external libraries required to build JAS (XML libraries, JavaHelp, Swing etc.) and a version of jmk which includes some JAS specific extensions. Although JAS will run under JDK 1.1 or better, to build JAS you need to have JDK 1.4 (or later) installed on your system and included in your PATH. To build JAS simply CD to the directory into which you extracted the CVS source files, and issue the command: java -jar jmk.jar This command will build the "core" JAS jar files, To build the full release of JAS, including the standard extensions and help, you will need to do the following: java -jar jmk.jar rel cd Extensions java -jar ../jmk.jar rel cd .. cd Help java -jar ../jmk.jar rel cd .. The first command creates a release directory and copies into it the compiled version of the base JAS distribution. The second two commands build the standard extensions and copy them into the release directory. The final two commands build the online help system. Notes:
|
Page last updated: Wednesday, January 14, 2004 by SLAC\tonyj