Update to 2.7.3
[profile/ivi/python.git] / Tools / buildbot / clean.bat
1 @rem Used by the buildbot "clean" step.
2 call "%VS90COMNTOOLS%vsvars32.bat"
3 @echo Deleting .pyc/.pyo files ...
4 del /s Lib\*.pyc Lib\*.pyo
5 @echo Deleting test leftovers ...
6 rmdir /s /q build
7 cd PCbuild
8 vcbuild /clean pcbuild.sln "Release|Win32"
9 vcbuild /clean pcbuild.sln "Debug|Win32"
10 cd ..