summaryrefslogtreecommitdiff
path: root/makefiles/aixmakesharedlib
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-11-26 21:40:14 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-11-26 21:40:14 +0000
commitecd2c821be8a72b0364cf3e08d102e3f9a82defc (patch)
tree9996380150b37e0bcd45ad342351c31d1939ed9a /makefiles/aixmakesharedlib
parentc93c134710bc7d1d8e1abb7a392243d81a5ad70c (diff)
Doco updates.
Remove unneeded files from the makefiles directory. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1735 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'makefiles/aixmakesharedlib')
-rwxr-xr-xmakefiles/aixmakesharedlib24
1 files changed, 0 insertions, 24 deletions
diff --git a/makefiles/aixmakesharedlib b/makefiles/aixmakesharedlib
deleted file mode 100755
index 8fd62a8d7..000000000
--- a/makefiles/aixmakesharedlib
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-#
-# aixmakesharedlib - a simple script for AIX shared lib creation from a
-# non shared library
-#
-# Notes:
-# - Should work for both AIX 3.2.x & 4.1.x
-# - Copies original (non shared) lib to be lib.NS
-# - May require slight modifications for different uses (this was written
-# with the FL library in mind)
-#
-
-/bin/rm -f shr.o syms.exp
-
-# create the exports list:
-echo "#!" > syms.exp
-dump -g $1 | egrep -e '[ \t]*[0-9]+' | sed 's/^[ \t]*[0-9][0-9]*[ \t]*[^ \t]//' | sed 's/^\.//' | sort | uniq >> syms.exp
-
-xlC -o shr.o $1 -bM:SRE -bE:syms.exp -bnoentry -lc -lm -lX11
-
-mv $1 $1.NS
-
-ar ruv $1 shr.o syms.exp
-/bin/rm -f shr.o syms.exp