94b2c6e696
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38066 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
128 lines
2.2 KiB
Bash
128 lines
2.2 KiB
Bash
#!/bin/bash
|
|
# ----------------------------------------------------------------------
|
|
|
|
if [ "$SWIGDIR" = "" ]; then
|
|
SWIGDIR=$PROJECTS\\SWIG-1.3.29
|
|
fi
|
|
|
|
|
|
# Use non-default python?
|
|
case $1 in
|
|
21 | 2.1) VER=21; shift ;;
|
|
22 | 2.2) VER=22; shift ;;
|
|
23 | 2.3) VER=23; shift ;;
|
|
24 | 2.4) VER=24; shift ;;
|
|
|
|
*) VER=24
|
|
esac
|
|
|
|
PYTHON=$TOOLS/python$VER/python.exe
|
|
|
|
SETUP="$PYTHON -u setup.py"
|
|
$PYTHON -c "import sys;print '\n', sys.version, '\n'"
|
|
|
|
|
|
FLAGS="USE_SWIG=1 SWIG=$SWIGDIR\\swig.exe"
|
|
UNIFLAG="UNICODE=1"
|
|
|
|
for p in $*; do
|
|
if [ "$p" = "UNICODE=0" -o "$p" = "UNICODE=1" ]; then
|
|
UNIFLAG=""
|
|
break
|
|
fi
|
|
done
|
|
|
|
FLAGS="$FLAGS $UNIFLAG"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# "c" --> clean
|
|
if [ "$1" = "c" ]; then
|
|
shift
|
|
CMD="$SETUP $FLAGS clean $@"
|
|
OTHERCMD="rm wx/*.pyd"
|
|
|
|
# just remove the *.pyd's
|
|
elif [ "$1" = "d" ]; then
|
|
shift
|
|
CMD="rm wx/*.pyd"
|
|
|
|
# touch all the *.i files so swig will regenerate
|
|
elif [ "$1" = "t" ]; then
|
|
shift
|
|
CMD=
|
|
find . -name "*.i" | xargs -l touch
|
|
|
|
# "i" --> install
|
|
elif [ "$1" = "i" ]; then
|
|
shift
|
|
CMD="$SETUP build install"
|
|
|
|
# "r" --> make installer
|
|
elif [ "$1" = "r" ]; then
|
|
shift
|
|
CMD="$PYTHON -u distrib\make_installer.py $@"
|
|
|
|
# "s" --> source dist
|
|
elif [ "$1" = "s" ]; then
|
|
shift
|
|
CMD="$SETUP sdist"
|
|
|
|
# "f" --> FINAL
|
|
elif [ "$1" == "f" ]; then
|
|
shift
|
|
CMD="$SETUP $FLAGS FINAL=1 build_ext --inplace $@"
|
|
|
|
# "h" --> HYBRID
|
|
elif [ "$1" = "h" ]; then
|
|
shift
|
|
CMD="$SETUP $FLAGS HYBRID=1 build_ext --inplace $@"
|
|
|
|
# "a" --> make all installers
|
|
elif [ "$1" = "a" ]; then
|
|
shift
|
|
CMD=
|
|
|
|
$0 23 d UNICODE=0
|
|
$0 23 h UNICODE=0
|
|
$0 23 r UNICODE=0
|
|
$0 23 d UNICODE=1
|
|
$0 23 h UNICODE=1
|
|
$0 23 r UNICODE=1
|
|
|
|
$0 24 d UNICODE=0
|
|
$0 24 h UNICODE=0
|
|
$0 24 r UNICODE=0
|
|
$0 24 d UNICODE=1
|
|
$0 24 h UNICODE=1
|
|
$0 24 r UNICODE=1
|
|
|
|
|
|
# "b" --> both debug and hybrid builds
|
|
elif [ "$1" = "b" ]; then
|
|
shift
|
|
CMD="echo Finished!"
|
|
$0 $VER $@
|
|
$0 $VER h $@
|
|
|
|
# (no command arg) --> normal debug build for development
|
|
else
|
|
CMD="$SETUP $FLAGS HYBRID=0 build_ext --inplace --debug $@"
|
|
fi
|
|
|
|
|
|
|
|
if [ "$CMD" != "" ]; then
|
|
echo $CMD
|
|
$CMD
|
|
fi
|
|
|
|
if [ "$OTHERCMD" != "" ]; then
|
|
echo $OTHERCMD
|
|
$OTHERCMD
|
|
fi
|
|
|