]>
Commit | Line | Data |
---|---|---|
d5a547f3 SN |
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 |