home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume10 / comobj.lisp / part01 / compile-it.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1987-07-30  |  410b  |  19 lines

  1. #!/bin/sh
  2. # Load CommonLoops, compile and test COOL.
  3.  
  4. CL=${CL-'/lisp/bin/cl'}  # change this to point to your local
  5.                          # Common Lisp
  6. PCL=${PCL-'/net/hplfs2/users/kempf/public/pcl'}
  7.  
  8. echo "Compiling Portable CommonLoops"
  9. $CL <<EOF
  10. #+HP(compile-file "defsys.l")
  11. #-HP(compile-file "defsys.lsp")
  12. (load "defsys")
  13. (pcl::compile-pcl)
  14. (sys::exit)
  15. EOF
  16.  
  17. echo "Done Compiling Portable CommonLoops"
  18.  
  19.