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.

29 lines
587 B

  1. @echo off
  2. @SETLOCAL ENABLEEXTENSIONS
  3. if "%1" == "" goto NeedHelp
  4. if "%2" == "" goto NeedHelp
  5. @set BASEDIR=%1
  6. @set EXEDIR=%2
  7. rem do copies here
  8. goto ExitMkRegress
  9. @REM =====================================================
  10. :NeedHelp
  11. @REM =====================================================
  12. @echo Usage: mkregres source_test_directory dest_test_directory
  13. @goto ExitMkRegress
  14. @REM =====================================================
  15. :ExitMkRegress
  16. @REM =====================================================
  17. @cd %BASEDIR%
  18. @ENDLOCAL
  19. goto :EOF