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.

21 lines
752 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 "%PROCESSOR_ARCHITECTURE%" == "MIPS" set arch=mips
  11. if "%PROCESSOR_ARCHITECTURE%" == "ALPHA" set arch=alpha
  12. if "%PROCESSOR_ARCHITECTURE%" == "PPC" set arch=ppc
  13. if exist build\* delnode /q build
  14. if exist libw32\lib\%arch%\msvcrt40.def del libw32\lib\%arch%\msvcrt40.def
  15. if exist libw32\lib\%arch%\msvcr40d.def del libw32\lib\%arch%\msvcr40d.def
  16. if exist depend.sed del depend.sed
  17. endlocal