home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 8 / FreshFishVol8-CD1.bin / new / util / edit / jade / install < prev    next >
Text File  |  1994-10-06  |  2KB  |  48 lines

  1.  
  2. This is how to compile and install Jade on a Unix system,
  3.  
  4. 1. Unpack the tar file into the directory which you want to compile Jade in,
  5.    this can be anywhere. You *don't* have to unpack it into the directory
  6.    which you want to install it in anymore.
  7.  
  8. 2. Set up the configuration files. Look at the file `src/configs/config.h.std'
  9.    if this seems okay for your system execute the command `./Configure std'
  10.    this creates a symbolic link `src/config.h' to the `config.h.std' config
  11.    file.
  12.  
  13.    If the `std' config is no good for you, edit the changes you need into
  14.    `src/configs/config.h.local'. Then execute the shell command
  15.    `./Configure local'.
  16.  
  17.    If you're using Linux, just use the command `./Configure -a' (the `-a'
  18.    option says to use the output from `uname -s' as the config file suffix)
  19.  
  20. 3. Compile the editor by executing the command `make'. This creates the
  21.    Makefile in the src directory and compiles jade.
  22.  
  23.    Some make variables you may want to override are:
  24.  
  25.     CFLAGS           --  compiler options
  26.     LDFLAGS           --  linker options
  27.     CPP           --  cpp program, it gets given two arguments, the
  28.                source and destination files, by default this
  29.                has the value "/lib/cpp"
  30.     prefix           --  directory tree to install jade in, default is
  31.                "/usr/local", another choice could be "/usr".
  32.     exec_prefix    --  directory tree to install system-dependant files
  33.                under, by default this is $(prefix)
  34.     infodir           --  directory to install jade's Info documentation in,
  35.                default is $(prefix)/info (i.e. "/usr/local/info")
  36.     bindir           --  directory to install jade's binary in, by default
  37.                this is $(exec_prefix)/bin (i.e. "/usr/local/bin")
  38.     jadedir           --  jade's library directory, by default this is,
  39.                $(prefix)/lib/jade/VERSION (i.e.
  40.                "/usr/local/lib/jade/3.X")
  41.  
  42. 4. Install it's files into their proper locations by executing the command
  43.    `make install', if you specified non-standard values for any of the
  44.    variables listed above, you should specify the same values when installing.
  45.  
  46.    Note that all directories which files are installed in are automatically
  47.    created.
  48.