diff options
author | Brian Paul <[email protected]> | 1999-09-15 15:10:20 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-15 15:10:20 +0000 |
commit | d9bb106726d3cc83475da536b4dbaeabac3740dd (patch) | |
tree | d1f568fdb1878a11ce8be5b6584075da3d370ed2 /bin/mklib.ar-ruv | |
parent | 210ef19797f5fe11462b19ddba9dc4f3c38c1115 (diff) |
added third, tiny version number to arguments
Diffstat (limited to 'bin/mklib.ar-ruv')
-rwxr-xr-x | bin/mklib.ar-ruv | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/bin/mklib.ar-ruv b/bin/mklib.ar-ruv index 4562308c027..c9ec582678c 100755 --- a/bin/mklib.ar-ruv +++ b/bin/mklib.ar-ruv @@ -4,9 +4,12 @@ #--identification------------------------------------------------------ -# $Id: mklib.ar-ruv,v 1.1 1999/08/19 13:52:57 brianp Exp $ +# $Id: mklib.ar-ruv,v 1.2 1999/09/15 15:10:20 brianp Exp $ # $Log: mklib.ar-ruv,v $ +# Revision 1.2 1999/09/15 15:10:20 brianp +# added third, tiny version number to arguments +# # Revision 1.1 1999/08/19 13:52:57 brianp # initial check-in (post-crash) # @@ -14,13 +17,6 @@ #--common-------------------------------------------------------------- -# Usage: mklib libname major minor file.o ... -# -# First argument is name of output library (LIBRARY) -# Second arg is major version number (MAJOR) -# Third arg is minor version number (MINOR) -# Rest of arguments are object files (OBJECTS) - LIBRARY=$1 shift 1 @@ -30,6 +26,9 @@ shift 1 MINOR=$1 shift 1 +TINY=$1 +shift 1 + OBJECTS=$* #--platform------------------------------------------------------------- |