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.

22 lines
725 B

  1. SETLOCAL
  2. set DOIT_DEBUG=FREE
  3. if "%1"=="DEBUG" set DOIT_DEBUG=CHECKED
  4. if "%DOIT_DEFPATH%" == "" set DOIT_DEFPATH=\\blues\public\johnyg\nt\mcivisca
  5. if "%PROCESSOR_ARCHITECTURE%" == "x86" set DOIT_ARCH=i386
  6. if NOT "%PROCESSOR_ARCHITECTURE%" == "x86" set DOIT_ARCH=%PROCESSOR_ARCHITECTURE%
  7. if NOT EXIST "%DOIT_DEFPATH%" mkdir %DOIT_DEFPATH%
  8. if NOT EXIST "%DOIT_DEFPATH%\%DOIT_DEBUG%" mkdir %DOIT_DEFPATH%\%DOIT_DEBUG%
  9. if "%DOIT_DESTPATH%" == "" set DOIT_DESTPATH=%DOIT_DEFPATH%\%DOIT_DEBUG%\%DOIT_ARCH%
  10. if NOT EXIST "%DOIT_DESTPATH%" mkdir %DOIT_DESTPATH%
  11. copy mcivisca\obj\%DOIT_ARCH%\mcivis32.dll %DOIT_DESTPATH%
  12. copy msmcivcr\obj\%DOIT_ARCH%\msmcivcr.exe %DOIT_DESTPATH%
  13. copy oemsetup.inf %DOIT_DESTPATH%
  14. :end
  15. ENDLOCAL