home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / CLISP / CLISPSRC.TAR / clisp-1995-01-01 / atari / CONVERT < prev    next >
Encoding:
Text File  |  1993-09-21  |  869 b   |  33 lines

  1. Explanation of the installation step 2:
  2. ---------------------------------------
  3.  
  4. You will have to convert the sources from ISO Latin-1 to the Atari ST
  5. character set.
  6.  
  7. Included here are programs for this conversion. Compile them:
  8.  
  9.     cc cv_lt_at.c -o cv_lt_at
  10.     cc nl-to-crlf.c -o nl-to-crlf
  11.  
  12. Install them somewhere in your path:
  13.  
  14.     cp cv_lt_at nl-to-crlf to-atari all-to-atari /usr/local/bin
  15.  
  16. Included are also programs for conversion in the opposite direction.
  17. Note that both conversions are not true inverses of each other since
  18. there are characters present in one character set and not in the other.
  19. Compile them:
  20.  
  21.     cc cv_at_lt.c -o cv_at_lt
  22.     cc crlf-to-nl.c -o crlf-to-nl
  23.  
  24. Install them somewhere in your path:
  25.  
  26.     cp cv_at_lt crlf-to-nl from-atari all-from-atari /usr/local/bin
  27.  
  28. Now convert the sources:
  29.  
  30.     cd ..
  31.     all-to-atari src/* utils/* doc/*
  32.  
  33.