		Installation
		============

To install FISh for Sun Sparcs running Solaris, untar this
distribution to a suitable location. You can start programming
immediately by typing the command fish, but you may wish to place
various resources in appropriate directories first. Here is a list of
the files in this distribution and their purpose, followed by a
possible placement.

INSTALL		this file.
README		labelling, NO WARRANTY, etc.
Reference 	reference files of types, syntax, a tutorial, etc. 
fcc		generates C programs from FiSh programs using gcc -
		modify this to choose your C compiler and options.
fish		the executable.
fish.h		a C include file.
libfish.a	a C library file.
standard_prelude.fsh
		the default start-up file for FISh, 
		it must be in the same directory, 
		or in a directory specified by 
		the environment variable FISH_LIB_DIR.

Here is a possible placement for these files which you can customise
to ensure that the files are accessible using your path parameters.
Please read it before use. 

mv fcc fish /usr/local/bin ;
mv fish.h /usr/local/include ;
setenv FISH_LIB_DIR .:/usr/local/lib ;
mv libfish.a standard_prelude.fsh /usr/local/lib ;
mv INSTALL README Reference ;
mv Reference /usr/local/doc/fish-reference;

