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.

45 lines
1016 B

  1. if '%1'=='retail' goto RETAIL
  2. if '%1'=='debug' goto DEBUG
  3. if '%1'=='ie4' goto IE4
  4. if '%1'=='' goto END
  5. :RETAIL
  6. rem Normal retail files needed for axa to work
  7. cd %AP_ROOT%\setup
  8. del /q %AP_ROOT%\setup\retail.bin\*.*
  9. copy %AP_ROOT%\build\win\ship\bin\danim.dll %AP_ROOT%\setup\retail.bin
  10. %IEXPRESS_DIR%\iexpress /N axa.cdf
  11. echo Retail self-extracting exe done
  12. echo Retail self-extracting exe done>> %Log_Dir%\%BUILDNO%Result.txt
  13. if not '%1'=='all' goto END
  14. :DEBUG
  15. rem Normal debug files needed for axa to work
  16. cd %AP_ROOT%\setup
  17. del /q %AP_ROOT%\setup\debug.bin\*.*
  18. copy %AP_ROOT%\build\win\debug\bin\danim.dll %AP_ROOT%\setup\debug.bin
  19. copy %AP_ROOT%\build\win\debug\bin\apeldbg.dll %AP_ROOT%\setup\debug.bin
  20. copy %AP_ROOT%\build\win\debug\bin\*.pdb %AP_ROOT%\setup\debug.bin
  21. %IEXPRESS_DIR%\iexpress /N axadbg.cdf
  22. echo Debug self-extracting exe done
  23. echo Debug self-extracting exe done>> %Log_Dir%\%BUILDNO%Result.txt
  24. goto END
  25. :IE4
  26. cd %AP_ROOT%\setup
  27. %IEXPRESS_DIR%\iexpress /N IE40.cdf
  28. goto END
  29. :END