home *** CD-ROM | disk | FTP | other *** search
/ Hacks & Cracks / Hacks_and_Cracks.iso / cracks / cracks2.zip / LEDSIGN.ZIP / LEDSign / Readme < prev    next >
Text File  |  1996-03-21  |  1KB  |  35 lines

  1. LED Sign V2.7  March 22, 1996
  2. Copyright 1995 Darrick Brown (dbrown@cs.hope.edu)
  3.  
  4. The main LEDSign directory contains the following directories:
  5.     LED - contains all the .java source code and compiled .classes
  6.     WWW - contains all the LED Sign HTMLs
  7.     fonts - contains any font data files
  8.     scripts - contains any scripts for LED Sign
  9.  
  10. LED Sign V2.7 comes pre-compiled, you do NOT need to compile the
  11. source code to use it.
  12.  
  13. You may want to make modifications to the source code.  If you do,
  14. you will need to recompile the applet (instructions below).  If you
  15. modify the source code, please do not redistribute the source code
  16. to others as I am trying to prevent multiple versions from being
  17. available.
  18.  
  19. To compile LED Sign:
  20.     cd LEDSign/LED (the source directory)
  21.     javac -classpath .:<your java classes directory> LED.java
  22.  
  23.     Example:
  24.         javac -classpath .:/src/java/classes LED.java
  25.  
  26.     Note:  The "-classpath" option tells the compiler where to look for the
  27.            ".class" files.  All paths are separated my a ':'.  Therefore,
  28.            if you are compiling in MS-DOS, you will not be able to do
  29.            "-classpath .:c:\java\classes" because it will try to look in
  30.            the current directory, c, and \java\classes.  You will need to
  31.            make sure that you have the Java Development Kit installed
  32.            correctly to compile
  33.  
  34.  
  35.