home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume10
/
comobj.lisp
/
part01
/
compile-it.sh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1987-07-30
|
410b
|
19 lines
#!/bin/sh
# Load CommonLoops, compile and test COOL.
CL=${CL-'/lisp/bin/cl'} # change this to point to your local
# Common Lisp
PCL=${PCL-'/net/hplfs2/users/kempf/public/pcl'}
echo "Compiling Portable CommonLoops"
$CL <<EOF
#+HP(compile-file "defsys.l")
#-HP(compile-file "defsys.lsp")
(load "defsys")
(pcl::compile-pcl)
(sys::exit)
EOF
echo "Done Compiling Portable CommonLoops"