home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / doswatcom / INSTALL < prev    next >
Encoding:
Text File  |  1993-12-31  |  1.5 KB  |  53 lines

  1. Installation on DOS using WATCOM C 9.5:
  2. ---------------------------------------
  3.  
  4. ** WARNING **:
  5. The preferred DOS extender for CLISP is EMX. CLISP built with WATCOM C will
  6. exhibits the following problems:
  7. * The readline editing capabilities are not built in.
  8. * Ctrl-C aborts the program ungracefully.
  9. * It is slower.
  10.  
  11. 1. Get and install the WATCOM C/C++^32 9.5 compiler. It is commercial
  12.    software; you cannot get it by anonymous ftp.
  13.    Only the C, 386, non-Windows part of the development system will be needed.
  14.    The C++, 8086, 286, Windows parts of the development system can be removed.
  15.  
  16. 2. Make sure WATCOM's \BIN are \BINB directories are in your path. Set the
  17.    environment variables WATCOM and INCLUDE. For example:
  18.  
  19.          PATH=C:\WATCOM95\BIN;C:\WATCOM95\BINB;C:\WATCOM95\BINW;%PATH%
  20.          set WATCOM=C:\WATCOM95
  21.          set INCLUDE=C:\WATCOM95\H
  22.          set DOS4G=QUIET
  23.  
  24. 3. Choose a directory for Clisp, say \CLISP.
  25.  
  26.          CD \CLISP
  27.  
  28.    Unpack the sources in this directory:
  29.  
  30.          PKUNZIP -d CLISP.ZIP
  31.    or
  32.          TAR xvf CLISP.TAR
  33.  
  34. 4. Convert the sources to the IBM PC character set.
  35.    They are distributed in ISO Latin-1 character set.
  36.  
  37.          cd dos
  38.          wcl386 -ox cv_lt_pc.c
  39.          cv_lt_pc < convert.bax > convert.bat
  40.          convert.bat
  41.          cd ..
  42.  
  43.    Copy some DOS or WATCOM specific files into SRC:
  44.  
  45.          DOSWATCOM\COPYX.BAT
  46.  
  47.    You may then delete unnecessary files:
  48.  
  49.          DOS\DELX.BAT
  50.  
  51. 5.-10. Proceed as described in dos/INSTALL 5. and 7.-10.
  52.  
  53.