Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
759 B

  1. @if (%_echo%)==() echo off
  2. setlocal
  3. REM
  4. REM Remove any stray BUILD.* files.
  5. REM
  6. del build.log build.wrn build.err /s >nul 2>&1
  7. REM
  8. REM Remove all OBJ and LIB directories.
  9. REM
  10. (for /f %%i in ('dir obj /ad /b /s') do (rd /s /q %%i >nul 2>&1)) >nul 2>&1
  11. rd /s /q lib >nul 2>&1
  12. REM
  13. REM Individually remove all generated files.
  14. REM
  15. rem del core\fixprop\src\mailmsg.tlb >nul 2>&1
  16. REM
  17. REM Delete the propagation directory.
  18. REM
  19. goto End
  20. if not (%_nttree%)==() rd /s /q %_nttree%\iis >nul 2>&1
  21. if not (%_nt386tree%)==() rd /s /q %_nt386tree%\iis >nul 2>&1
  22. if not (%_ntalphatree%)==() rd /s /q %_ntalphatree%\iis >nul 2>&1
  23. if not (%_ntia64tree%)==() rd /s /q %_ntia64tree%\iis >nul 2>&1
  24. if not (%_ntaxp64tree%)==() rd /s /q %_ntaxp64tree%\iis >nul 2>&1
  25. :End