1 @rem Used by the buildbot "buildmsi" step. 2 3 cmd /c Tools\buildbot\external.bat 4 @rem build release versions of things 5 call "%VS90COMNTOOLS%vsvars32.bat" 6 7 @rem build Python 8 vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" 9 10 @rem build the documentation 11 bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' 12 "%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp 13 14 @rem build the MSI file 15 cd PC 16 nmake /f icons.mak 17 cd ..\Tools\msi 18 del *.msi 19 nmake /f msisupport.mak 20 %HOST_PYTHON% msi.py 21