summaryrefslogtreecommitdiff
path: root/xc/extras/Mesa/bin/mklib.ar-ruv
diff options
context:
space:
mode:
authorgareth <gareth>2000-12-01 20:37:35 +0000
committergareth <gareth>2000-12-01 20:37:35 +0000
commit0fa77f7f91a09cf332fd0433c7b6e962a80cecaf (patch)
tree4957535f0a4e846af59b7a8d92a852b71ddebaab /xc/extras/Mesa/bin/mklib.ar-ruv
parentd03307dd9f98036c40abf2f98dac3fde22ef2e89 (diff)
Merge with trunk (almost there!).ati-4-1-1-20001202-mergeati-4-1-1-branch
Diffstat (limited to 'xc/extras/Mesa/bin/mklib.ar-ruv')
-rwxr-xr-xxc/extras/Mesa/bin/mklib.ar-ruv44
1 files changed, 44 insertions, 0 deletions
diff --git a/xc/extras/Mesa/bin/mklib.ar-ruv b/xc/extras/Mesa/bin/mklib.ar-ruv
new file mode 100755
index 000000000..390fdd7ee
--- /dev/null
+++ b/xc/extras/Mesa/bin/mklib.ar-ruv
@@ -0,0 +1,44 @@
+#!/bin/sh
+
+# Make a standard Unix .a library file with 'ar ruv'
+
+#--identification------------------------------------------------------
+
+# $Id: mklib.ar-ruv,v 1.1.4.1 2000/12/01 20:37:45 gareth Exp $
+
+# $Log: mklib.ar-ruv,v $
+# Revision 1.1.4.1 2000/12/01 20:37:45 gareth
+# Merge with trunk (almost there!).
+#
+# Revision 1.1 2000/11/30 17:31:30 dawes
+# Initial revision
+#
+# 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--------------------------------------------------------------
+
+LIBRARY=$1
+shift 1
+
+MAJOR=$1
+shift 1
+
+MINOR=$1
+shift 1
+
+TINY=$1
+shift 1
+
+OBJECTS=$*
+
+#--platform-------------------------------------------------------------
+
+#ar ruv $LIBRARY $OBJECTS
+ar ru $LIBRARY $OBJECTS
+