
:	shell file to recompile and install stuff in a library

if $9x != x goto err
echo compiling $1 $2 $3 $4 $5 $6 $7 $8
cc -c -O -f    $1 $2 $3 $4 $5 $6 $7 $8
echo archiving *.o into lib2
ar r ../lib2    *.o
rm *.o
echo lib2 archive complete
exit
: err
echo too many arguments
