Home | History | Annotate | Download | only in buildbot
      1 @rem Used by the buildbot "clean" step.
      2 call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
      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|x64"
      9 vcbuild /clean pcbuild.sln "Debug|x64"
     10 cd ..
     11