NASM 0.96
[nasm.git] / rdoff / test / makelib
blobbaa4676679e562ae72b849b34561c74abce3dcb8
2 LIBNAME=$1;
3 shift;
5 if [ "$LIBNAME" = "" ]; then
6         echo 'Usage: makelib <library name> <module> [...]'
7 fi
9 rdflib c $LIBNAME
11 for FILE in $*; do
12         rdflib a $LIBNAME $FILE $FILE
13 done
14