blob: cb6f99ed2f9fe553571bd713c16efaf2ac905dda [file] [log] [blame]
Georg Brandl49857f82011-03-05 15:11:35 +01001@rem Used by the buildbot "clean" step.
Brian Curtin401f9f32012-05-13 11:19:23 -05002call "%VS100COMNTOOLS%vsvars32.bat"
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
Georg Brandl49857f82011-03-05 15:11:35 +01007cd PCbuild
Brian Curtin6d7c9f32012-05-13 22:45:57 -05008msbuild /target:clean pcbuild.sln /p:Configuration=Release /p:PlatformTarget=x86
9msbuild /target:clean pcbuild.sln /p:Configuration=Debug /p:PlatformTarget=x86
Antoine Pitrou9eea9d32011-03-26 21:15:47 +010010cd ..