summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2003-09-09 13:33:12 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2003-09-09 13:33:12 +0000
commit39c65bfb93365d5b4ce16e4339517769545d01e8 (patch)
tree64e2701a045628263561f907e3c1c4105111d2c7 /bin
parent0207b47aafebc06cf83fbdb8c9b01f63374fac66 (diff)
remove last of mklib.solaris stuff
Diffstat (limited to 'bin')
-rw-r--r--bin/mklib.solaris52
1 files changed, 0 insertions, 52 deletions
diff --git a/bin/mklib.solaris b/bin/mklib.solaris
deleted file mode 100644
index 5a26a355c02..00000000000
--- a/bin/mklib.solaris
+++ /dev/null
@@ -1,52 +0,0 @@
-#!/bin/sh
-
-# Make a Solaris shared library
-# contributed by Arno Hahma (arno@nitro.pp.utu.fi)
-
-#--identification------------------------------------------------------
-
-# $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--------------------------------------------------------------
-
-LIBRARY=$1
-shift 1
-
-MAJOR=$1
-shift 1
-
-MINOR=$1
-shift 1
-
-TINY=$1
-shift 1
-
-OBJECTS=$*
-
-#--platform-------------------------------------------------------------
-
-set -x
-
-LIBRARY=`basename $LIBRARY .a`
-
-VERSION=$MAJOR.$MINOR
-
-echo "Building shared object $LIBRARY.so.$VERSION and the archive library $LIBRARY.a"
-rm -f ${LIBRARY}.a ${LIBRARY}.so.${VERSION}
-ar ruv ${LIBRARY}.a ${OBJECTS}
-
-ld -G -o ${LIBRARY}.so.${VERSION} ${OBJECTS}
-
-cp ${LIBRARY}.a ${LIBRARY}.so.${VERSION} ../lib
-cd ../lib
-ln -s ${LIBRARY}.so.${VERSION} ${LIBRARY}.so
-