Roast 1.2 README
Installation
     Note: This software has been tested with JDK 1.2 only

     1. Change to the directory where you want to install Roast.

     2. Unpack the downloaded software file:
          % tar xvf <path>/roast1.2.tar
              where <path> is the path to the downloaded tar file.

     3. Update the PATH and CLASSPATH variables:
          To set the PATH and CLASSPATH permanently, set them in
          your startup file.
               * For C shell (csh), edit the startup file (~/.cshrc):
                    setenv PATH <path to roast>/roast1.2/bin:$PATH
                    setenv CLASSPATH <path to roast>/roast1.2:$CLASSPATH
               * For ksh, bash or sh, edit the profile file (~/.profile):
                    PATH=<path to roast>/roast1.2/bin:$PATH
                    CLASSPATH=<path to roast>/roast1.2:$CLASSPATH
          Then load the startup file and verify that the path is set:
               * For C shell (csh):
                    % source ~/.cshrc
                    % which roast
               * For ksh, bash or sh:
                    $ . $HOME/.profile
                    $ which roast

     4. Run test scripts to verify Roast installation
          To test the Roast installation, execute:
              % cd roast1.2/installTest
              % roast < Test.script > Test.java
              % javac Test.java
              % java Test -level 4 -logfile Test.actual
              % diff Test.actual Test.expected
          To check the Roast Log Message Viewer installation, execute:
              % cd roast1.2/installTest
              % roast < Test.script > Test.java
              % javac Test.java
              % java Test -level 4 -logfile Test.ser -type 1
              % java roast.viewer.LogViewer Test.ser
