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

@echo off
@SETLOCAL ENABLEEXTENSIONS
if "%1" == "" goto NeedHelp
if "%2" == "" goto NeedHelp
@set BASEDIR=%1
@set EXEDIR=%2
rem do copies here
goto ExitMkRegress
@REM =====================================================
:NeedHelp
@REM =====================================================
@echo Usage: mkregres source_test_directory dest_test_directory
@goto ExitMkRegress
@REM =====================================================
:ExitMkRegress
@REM =====================================================
@cd %BASEDIR%
@ENDLOCAL
goto :EOF