blob: 715805a7c11503570dae8bb4e1bf47a0dbdd5e04 [file] [log] [blame]
Georg Brandl49857f82011-03-05 15:11:35 +01001@rem Used by the buildbot "clean" step.
2call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
Georg Brandl49857f82011-03-05 15:11:35 +01003@echo Deleting .pyc/.pyo files ...
4del /s Lib\*.pyc Lib\*.pyo
Antoine Pitrou9eea9d32011-03-26 21:15:47 +01005@echo Deleting test leftovers ...
6rmdir /s /q build
7cd PCbuild
Georg Brandl49857f82011-03-05 15:11:35 +01008vcbuild /clean pcbuild.sln "Release|x64"
9vcbuild /clean pcbuild.sln "Debug|x64"
Antoine Pitrou9eea9d32011-03-26 21:15:47 +010010cd ..