home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / PowerLisp 1.01 / compile-libraries.lisp next >
Encoding:
Text File  |  1993-08-24  |  455 b   |  30 lines  |  [TEXT/ROSA]

  1. ;;
  2. ;;    This file compiles all the standard libraries
  3. ;;
  4.  
  5. ;(compile-file 
  6. ;    ":library:assembler.lisp" 
  7. ;    :output-file ":library:assembler.compiled-lisp"
  8. ;    :print t)
  9.  
  10. (compile-file 
  11.     ":library:compiler.lisp" 
  12.     :output-file ":library:compiler.compiled-lisp"
  13.     :print t)
  14.  
  15. (compile-file 
  16.     ":library:cl.lisp" 
  17.     :output-file ":library:cl.compiled-lisp"
  18.     :print t)
  19.  
  20. (compile-file 
  21.     ":library:loop.lisp" 
  22.     :output-file ":library:loop.compiled-lisp"
  23.     :print t)
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.