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.

37 lines
796 B

  1. rem @echo off
  2. if "%1"=="-h" goto usage
  3. if "%1"=="-H" goto usage
  4. if "%1"=="/?" goto usage
  5. echo SEPI5CE: copying to release directory
  6. set _TARGETCPUINDPATH=%_TGTCPUTYPE%\%_TGTCPU%\%_TGTOS%\%WINCEDEBUG%
  7. if "%1"=="-m" goto merge
  8. REM --- copy files to release directory
  9. xcopy /I /V /H %_PUBLICROOT%\speech\oak\target\%_TARGETCPUINDPATH% %_FLATRELEASEDIR%
  10. xcopy /E /I /V /H %_PUBLICROOT%\speech\oak\files %_FLATRELEASEDIR%
  11. goto done
  12. :merge
  13. call %_PUBLICROOT%\speech\oak\misc\sapi_rel.bat
  14. rem call %_PUBLICROOT%\speech\oak\misc\spttseng_rel.bat
  15. call %_PUBLICROOT%\speech\oak\misc\sreng_rel.bat
  16. call %_PUBLICROOT%\speech\oak\misc\ttseng_rel.bat
  17. goto done
  18. :usage
  19. echo sapi5rel [-h][-r]
  20. echo -h: Prints this message
  21. echo -m: merges bib, reg and dat files
  22. :done
  23. set _TARGETCPUINDPATH=""