]>
git.saurik.com Git - wxWidgets.git/blob - setup/shared/sharedBsd
3 #LIBRARY_BASE=`echo $1 | sed 's/.a/.so/'`
10 while (test $# -ne 1) do
12 LIBRARY_OBJS
="$LIBRARY_OBJS $1sh";
15 LIBRARY_NAME
=`basename $LIBRARY_BASE`
16 LIBRARY_FILE
=$LIBRARY_BASE.
$LIBRARY_MAJOR.
$LIBRARY_MINOR
18 echo "Creating shared library: $LIBRARY_FILE"
20 if test "x$COMPILER" = xgcc
; then
21 gcc
-shared -o $LIBRARY_FILE $LIBRARY_OBJS
23 CC
-Bshareable -Bforcearchive -o $LIBRARY_FILE $LIBRARY_OBJS
25 chmod a
+x
$LIBRARY_FILE
26 rm -f $LIBRARY_BASE.
$LIBRARY_MAJOR
27 ln -s $LIBRARY_NAME.
$LIBRARY_MAJOR.
$LIBRARY_MINOR $LIBRARY_BASE.
$LIBRARY_MAJOR
29 ln -s $LIBRARY_NAME.
$LIBRARY_MAJOR $LIBRARY_BASE