Leaked source code of windows server 2003
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.

18 lines
608 B

  1. @setlocal
  2. @echo off
  3. @rem Multi-Architecture version of clean.bat:
  4. @rem .bat files are executed before .cmd, thus clean.bat will be
  5. @rem executed if just 'clean' is typed, 'clean.cmd' must be explicitly
  6. @rem used to execute this script
  7. set arch=i386
  8. if "%PROCESSOR_ARCHITECTURE%" == "x86" set arch=%arch%
  9. if "%PROCESSOR_ARCHITECTURE%" == "IA64" set arch=ia64
  10. if exist build\* delnode /q build
  11. if exist libw32\lib\%arch%\msvcrt40.def del libw32\lib\%arch%\msvcrt40.def
  12. if exist libw32\lib\%arch%\msvcr40d.def del libw32\lib\%arch%\msvcr40d.def
  13. if exist depend.sed del depend.sed
  14. endlocal