ack/lang/occam/lib/AR4
2007-02-25 22:49:23 +00:00

12 lines
169 B
Bash
Executable file

#!/bin/sh
case $# in
0) ar ru /user0/bot/lib/lib4.a *.o
ranlib /user0/bot/lib/lib4.a
rm -f *.o
;;
*) keys=$1
shift
ar $keys /user0/bot/lib/lib4.a $*
;;
esac