mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-02-17 17:19:35 +08:00
15 lines
184 B
Plaintext
15 lines
184 B
Plaintext
|
|
LIBNAME=$1;
|
|
shift;
|
|
|
|
if [ "$LIBNAME" = "" ]; then
|
|
echo 'Usage: makelib <library name> <module> [...]'
|
|
fi
|
|
|
|
rdflib c $LIBNAME
|
|
|
|
for FILE in $*; do
|
|
rdflib a $LIBNAME $FILE $FILE
|
|
done
|
|
|