added third, tiny version number to arguments
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Sep 1999 15:10:20 +0000 (15:10 +0000)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 15 Sep 1999 15:10:20 +0000 (15:10 +0000)
bin/mklib.aix
bin/mklib.ar-ruv
bin/mklib.solaris

index da8f642f8520cc3ca5669eae0c12bf7da213e5b4..fa7f050ddbf2e8e6a76ef4b60cab049ec547ace6 100755 (executable)
@@ -6,9 +6,12 @@
 
 #--identification------------------------------------------------------
 
-# $Id: mklib.aix,v 1.1 1999/08/19 13:52:56 brianp Exp $
+# $Id: mklib.aix,v 1.2 1999/09/15 15:10:20 brianp Exp $
 
 # $Log: mklib.aix,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:56  brianp
 # initial check-in (post-crash)
 #
 
 #--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
 
@@ -32,6 +28,9 @@ shift 1
 MINOR=$1
 shift 1
 
+TINY=$1
+shift 1
+
 OBJECTS=$*
 
 #--platform------------------------------------------------------------
index 4562308c027812bbc7a4bda40d69d33636681dde..c9ec582678cf78db13a9b5a9717f2e2009eb4901 100755 (executable)
@@ -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)
 #
 
 #--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-------------------------------------------------------------
index 218665708af9ff1e9b254c52405012656e33c5a1..5a26a355c023f45cc3066d5e7834537784aad6f0 100644 (file)
@@ -5,9 +5,12 @@
 
 #--identification------------------------------------------------------
 
-# $Id: mklib.solaris,v 1.1 1999/08/19 13:53:06 brianp Exp $
+# $Id: mklib.solaris,v 1.2 1999/09/15 15:10:20 brianp Exp $
 
 # $Log: mklib.solaris,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:53:06  brianp
 # initial check-in (post-crash)
 #
 
 #--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
 
@@ -31,6 +27,9 @@ shift 1
 MINOR=$1
 shift 1
 
+TINY=$1
+shift 1
+
 OBJECTS=$*
 
 #--platform-------------------------------------------------------------