Newest version of script(s) for creating DLLs - now divided in two,
[wxWidgets.git] / src / os2 / dllnames.sh
1 #!/bin/sh
2 #
3 # dllnames - a tool to form short DLL names for wxWindows
4 #
5 # This script will accept an import library name and create
6 # a short(er) DLL name from it.
7
8 dllFile="$1"
9 case $dllFile in
10 *wx_base_*)
11 dllFile=`echo $dllFile | sed 's/base_\(...\)/b\1/'`
12 ;;
13 *wx_*_*)
14 dllFile=`echo $dllFile | sed 's/_\(..\)[^_]*_\(..\)[^-]*-/\1\2/'`
15 ;;
16 *)
17 ;;
18 esac
19 dllFile="`echo $dllFile | sed 's/\.//' | sed 's/_//' | sed 's/-//'`"
20 echo $dllFile
21 exit 0