summaryrefslogtreecommitdiff
path: root/xc/extras/Mesa/bin/mklib.new
diff options
context:
space:
mode:
Diffstat (limited to 'xc/extras/Mesa/bin/mklib.new')
-rwxr-xr-xxc/extras/Mesa/bin/mklib.new49
1 files changed, 49 insertions, 0 deletions
diff --git a/xc/extras/Mesa/bin/mklib.new b/xc/extras/Mesa/bin/mklib.new
new file mode 100755
index 000000000..1681a47a2
--- /dev/null
+++ b/xc/extras/Mesa/bin/mklib.new
@@ -0,0 +1,49 @@
+#!/bin/sh
+
+# Make a XXX library file
+
+#--identification------------------------------------------------------
+
+# $Id: mklib.new,v 1.1.4.1 2000/12/01 20:37:45 gareth Exp $
+
+# $Log: mklib.new,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:53:04 brianp
+# initial check-in (post-crash)
+#
+
+
+#--common--------------------------------------------------------------
+
+LIBRARY=$1
+shift 1
+
+MAJOR=$1
+shift 1
+
+MINOR=$1
+shift 1
+
+TINY=$1
+shift 1
+
+OBJECTS=$*
+
+#--debug---------------------------------------------------------------
+
+#echo LIBRARY = $LIBRARY
+#echo MAJOR = $MAJOR
+#echo MINOR = $MINOR
+#echo OBJECTS = $OBJECTS
+
+#--platform-------------------------------------------------------------
+
+Put your OS/platform-specific commands here for making static/shared libs.