Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 1 | @rem Used by the buildbot "buildmsi" step. |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 2 | |
Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 3 | cmd /c Tools\buildbot\external.bat |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 4 | @rem build release versions of things |
Christian Heimes | 57dddfb | 2008-01-02 18:30:52 +0000 | [diff] [blame] | 5 | call "%VS90COMNTOOLS%vsvars32.bat" |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 6 | |
| 7 | @rem build Python |
Christian Heimes | faf2f63 | 2008-01-06 16:59:19 +0000 | [diff] [blame] | 8 | vcbuild /useenv PCbuild\pcbuild.sln "Release|Win32" |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 9 | |
| 10 | @rem build the documentation |
Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 11 | bash.exe -c 'cd Doc;make PYTHON=python2.5 update htmlhelp' |
Alexandre Vassalotti | a79e33e | 2008-05-15 22:51:26 +0000 | [diff] [blame] | 12 | "%ProgramFiles%\HTML Help Workshop\hhc.exe" Doc\build\htmlhelp\python30a5.hhp |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 13 | |
| 14 | @rem buold the MSI file |
| 15 | cd PC |
| 16 | nmake /f icons.mak |
| 17 | cd ..\Tools\msi |
Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 18 | del *.msi |
Martin v. Löwis | 5a885d7 | 2007-09-13 13:33:46 +0000 | [diff] [blame] | 19 | nmake /f msisupport.mak |
Thomas Wouters | bca5480 | 2007-09-10 19:32:14 +0000 | [diff] [blame] | 20 | %HOST_PYTHON% msi.py |