Georg Brandl | 49857f8 | 2011-03-05 15:11:35 +0100 | [diff] [blame] | 1 | @rem Used by the buildbot "clean" step. |
| 2 | call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 |
Georg Brandl | 49857f8 | 2011-03-05 15:11:35 +0100 | [diff] [blame] | 3 | @echo Deleting .pyc/.pyo files ... |
| 4 | del /s Lib\*.pyc Lib\*.pyo |
Antoine Pitrou | 9eea9d3 | 2011-03-26 21:15:47 +0100 | [diff] [blame] | 5 | @echo Deleting test leftovers ... |
| 6 | rmdir /s /q build |
| 7 | cd PCbuild |
Georg Brandl | 49857f8 | 2011-03-05 15:11:35 +0100 | [diff] [blame] | 8 | vcbuild /clean pcbuild.sln "Release|x64" |
| 9 | vcbuild /clean pcbuild.sln "Debug|x64" |
Antoine Pitrou | 9eea9d3 | 2011-03-26 21:15:47 +0100 | [diff] [blame] | 10 | cd .. |