2004-06-08 22:43:22 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
|
2005-12-21 22:24:47 -05:00
|
|
|
if [ "$SWIGDIR" = "" ]; then
|
2006-03-13 23:15:20 -05:00
|
|
|
SWIGDIR=$PROJECTS\\SWIG-1.3.29
|
2005-12-21 22:24:47 -05:00
|
|
|
fi
|
|
|
|
|
2004-06-08 22:43:22 -04:00
|
|
|
|
|
|
|
# Use non-default python?
|
2004-06-10 22:41:27 -04:00
|
|
|
case $1 in
|
2004-12-16 20:22:27 -05:00
|
|
|
21 | 2.1) VER=21; shift ;;
|
|
|
|
22 | 2.2) VER=22; shift ;;
|
|
|
|
23 | 2.3) VER=23; shift ;;
|
|
|
|
24 | 2.4) VER=24; shift ;;
|
2006-07-04 20:37:11 -04:00
|
|
|
25 | 2.5) VER=25; shift ;;
|
2004-06-10 22:41:27 -04:00
|
|
|
|
2004-12-16 20:22:27 -05:00
|
|
|
*) VER=24
|
2004-06-10 22:41:27 -04:00
|
|
|
esac
|
|
|
|
|
|
|
|
PYTHON=$TOOLS/python$VER/python.exe
|
2004-06-08 22:43:22 -04:00
|
|
|
|
|
|
|
SETUP="$PYTHON -u setup.py"
|
|
|
|
$PYTHON -c "import sys;print '\n', sys.version, '\n'"
|
|
|
|
|
|
|
|
|
2006-02-01 21:20:02 -05:00
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-06-08 22:43:22 -04:00
|
|
|
|
|
|
|
# "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=
|
|
|
|
|
2006-02-23 20:03:18 -05:00
|
|
|
$0 23 d UNICODE=0
|
|
|
|
$0 23 h UNICODE=0
|
|
|
|
$0 23 r UNICODE=0
|
2004-06-08 22:43:22 -04:00
|
|
|
$0 23 d UNICODE=1
|
|
|
|
$0 23 h UNICODE=1
|
|
|
|
$0 23 r UNICODE=1
|
|
|
|
|
2006-02-23 20:03:18 -05:00
|
|
|
$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
|
|
|
|
|
2004-06-08 22:43:22 -04:00
|
|
|
|
|
|
|
# "b" --> both debug and hybrid builds
|
|
|
|
elif [ "$1" = "b" ]; then
|
|
|
|
shift
|
|
|
|
CMD="echo Finished!"
|
|
|
|
$0 $VER $@
|
|
|
|
$0 $VER h $@
|
|
|
|
|
2004-10-09 20:48:34 -04:00
|
|
|
# (no command arg) --> normal debug build for development
|
2004-06-08 22:43:22 -04:00
|
|
|
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
|
|
|
|
|