
                          Ŀ
                           Install Procedure 
                          

    There is the list of things to do to make this compiler work.

    1. Copy or extract the files and directories of the compiler into a
       directory ( let's say c:\xs ).
    2. Add the BIN directory (c:\xs\bin) to the PATH variable in autoexec.bat
    3. Add the following environment variables (to your autoexec.bat):

        SET XSINC = directory_of_included_files (c:\xs\inc)
        SET XSLIB = directory_of_used_functions (c:\xs\lib)
        SET XSLNG = language_file(full path)    (c:\xs\lng\xs.lng)

    You can also make a batch file to define these variables, and execute it
  before using the compiler. This batch file may look like this :

       SET PATH=%PATH%;c:\xs\bin
       SET XSINC=c:\xs\inc
       SET XSLIB=c:\xs\lib
       SET XSLNG=c:\xs\lng\xs.lng
                 
    For more information, check the files from the MAN directory or the
  manual (bin\xsman.exe) and the files from the EXAMPLES directory. You should
  also read the tips.txt file, and check the Trouble Shooter (trouble.txt).

    You should also read the language specifications (check the files from
  the MAN\LNG directory or use your manual : xsman.exe language).
