blob: ae93e672956531233ece1982a016a966c72d4478 [file] [log] [blame]
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00001@rem Used by the buildbot "buildmsi" step.
2
3cmd /c Tools\buildbot\external.bat
4@rem build release versions of things
Brian Curtin401f9f32012-05-13 11:19:23 -05005call "%VS100COMNTOOLS%vsvars32.bat"
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00006
7@rem build Python
Brian Curtin6d7c9f32012-05-13 22:45:57 -05008msbuild /p:useenv=true PCbuild\pcbuild.sln /p:Configuration=Release /p:Platform=Win32
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00009
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