More tweaking. Demo shows python version in about box, build script

easier to use but lots smarter...


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@8571 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-10-16 23:08:16 +00:00
parent 39ec07c3b0
commit d1640f9bd5
2 changed files with 46 additions and 4 deletions

View File

@@ -1,3 +1,41 @@
#!/bin/sh
python -u setup.py USE_SWIG=1 IN_CVS_TREE=1 build_ext --inplace $*
SETUP="python$PYVER -u setup.py"
FLAGS="USE_SWIG=1 IN_CVS_TREE=1"
# "c" --> clean
if [ "$1" = "c" ]; then
shift
CMD="$SETUP $FLAGS clean"
OTHERCMD="rm -f wxPython/*.so"
# "i" --> install
elif [ "$1" = "i" ]; then
shift
CMD="$SETUP build install"
# "s" --> source dist
elif [ "$1" = "s" ]; then
shift
CMD="$SETUP sdist"
# "r" --> rpm dist
elif [ "$1" = "r" ]; then
shift
CMD="$SETUP bdist_rpm"
# (no command arg) --> normal build for development
else
CMD="$SETUP $FLAGS build_ext --inplace $*"
fi
echo $CMD
$CMD
if [ "$OTHERCMD" != "" ]; then
echo $OTHERCMD
$OTHERCMD
fi