#!/bin/csh -f rm -rf usr/ mkdir -p usr/bin cp ../newlisp usr/bin/ mkdir -p usr/share/man/man1 cp ../doc/newlisp.1 usr/share/man/man1/ gzip usr/share/man/man1/* mkdir -p usr/share/newlisp/doc cp ../doc/*.html usr/share/newlisp/doc/ cp ../README usr/share/newlisp/ cp ../doc/COPYING usr/share/newlisp/ cp ../doc/CREDITS usr/share/newlisp/ cp ../doc/TRU64BUILD usr/share/newlisp/ cp ../modules/* usr/share/newlisp/ cp ../examples/init.lsp.example usr/share/newlisp/ # # makesetld # set OUTPUT = NEWLISP92 set SRC = . rm -rf $OUTPUT mkdir $OUTPUT # # Create the kits. # #cd ./data kits NEWLISP92.k $SRC $OUTPUT if ( $status != 0 ) then exit 1 endif #cd .. # # Create a tar file. # echo "Creating tar file..." tar -cf NEWLISP92.tar ./$OUTPUT gzip NEWLISP92.tar # # Done # echo "Done"