1@rem Used by the buildbot "buildmsi" step.
2
3cmd /c Tools\buildbot\external.bat
4@rem build release versions of things
5call "%VS90COMNTOOLS%vsvars32.bat"
6
7@rem build Python
8vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32"
9
10@rem build the documentation
11bash.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
15cd PC
16nmake /f icons.mak
17cd ..\Tools\msi
18del *.msi
19nmake /f msisupport.mak
20%HOST_PYTHON% msi.py
21