Martin v. Löwis | fbf83bb | 2007-09-10 10:22:05 +0000 | [diff] [blame] | 1 | @rem Used by the buildbot "buildmsi" step. |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 2 | |
Martin v. Löwis | fbf83bb | 2007-09-10 10:22:05 +0000 | [diff] [blame] | 3 | cmd /c Tools\buildbot\external.bat |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 4 | @rem build release versions of things |
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 5 | call "%VS90COMNTOOLS%vsvars32.bat" |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 6 | |
| 7 | @rem build Python |
Martin v. Löwis | 4b3311b | 2008-01-06 10:09:48 +0000 | [diff] [blame] | 8 | vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 9 | |
| 10 | @rem build the documentation |
Martin v. Löwis | 342cff6 | 2007-09-10 13:30:38 +0000 | [diff] [blame] | 11 | bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' |
Martin v. Löwis | a383796 | 2008-05-10 13:24:09 +0000 | [diff] [blame] | 12 | "%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python26a3.hhp |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 13 | |
| 14 | @rem buold the MSI file |
| 15 | cd PC |
| 16 | nmake /f icons.mak |
| 17 | cd ..\Tools\msi |
Martin v. Löwis | fbf83bb | 2007-09-10 10:22:05 +0000 | [diff] [blame] | 18 | del *.msi |
Martin v. Löwis | 82151c6 | 2007-09-13 09:59:00 +0000 | [diff] [blame] | 19 | nmake /f msisupport.mak |
Martin v. Löwis | fbf83bb | 2007-09-10 10:22:05 +0000 | [diff] [blame] | 20 | %HOST_PYTHON% msi.py |