2 REM ----------------------------------------------------------------------
3 REM Note: This is a 4NT script
4 REM ----------------------------------------------------------------------
7 set FLAGS
=USE_SWIG
=1 IN_CVS_TREE
=1
10 rem Use non-default python?
11 iff
"%1" == "15" .or.
"%1" == "20" .or.
"%1" == "21" .or.
"%1" == "22" then
13 set PYTHON
=%TOOLS%\python
%1%\python.exe
17 echo You must specify Python version as first parameter.
20 set SETUP
=%PYTHON% -u setup.py
23 %PYTHON% -c
"import sys;print '\n', sys.version, '\n'"
29 set CMD=%SETUP% %FLAGS% clean
%1 %2 %3 %4 %5 %6 %7 %8 %9
30 set OTHERCMD
=del wxPython\
*.pyd
32 rem just remove the *.pyd's
33 elseiff
"%1" == "d" then
35 set CMD=del wxPython\
*.pyd
36 set OTHERCMD
=del wxPython\
*.pdb
38 rem touch all the *.i files so swig will regenerate
39 elseiff
"%1" == "t" then
41 set CMD=echo Finished
!
42 find .
-name
"*.i" | xargs
-l touch
45 elseiff
"%1" == "i" then
47 set CMD=%SETUP% build install
49 rem "r" --> make installer
50 elseiff
"%1" == "r" then
52 set CMD=%PYTHON% distrib\make_installer.py
%1 %2 %3 %4 %5 %6 %7 %8 %9
54 rem "s" --> source dist
55 elseiff
"%1" == "s" then
60 elseiff
"%1" == "f" then
62 set CMD=%SETUP% %FLAGS% FINAL
=1 build_ext
--inplace
%1 %2 %3 %4 %5 %6 %7 %8 %9
65 elseiff
"%1" == "h" then
67 set CMD=%SETUP% %FLAGS% HYBRID
=1 build_ext
--inplace
%1 %2 %3 %4 %5 %6 %7 %8 %9
69 rem "a" --> make all installers
70 elseiff
"%1" == "a" then
72 set CMD=echo Finished
!
99 rem "b" --> both debug and hybrid builds
100 elseiff
"%1" == "b" then
102 set CMD=echo Finished
!
103 call b.bat
%VER% %1 %2 %3 %4 %5 %6 %7 %8 %9
104 call b.bat
%VER% h
%1 %2 %3 %4 %5 %6 %7 %8 %9
106 rem (no command arg) --> normal build for development
108 set CMD=%SETUP% %FLAGS% HYBRID
=0 build_ext
--inplace
--debug %1 %2 %3 %4 %5 %6 %7 %8 %9
116 iff
"%OTHERCMD%" != "" then