Leaked source code of windows server 2003
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.
 
 
 
 
 
 

28 lines
402 B

@echo off
if "%1" == "" goto usage
if not exist "%1\bin\setenv.bat" goto ddkfilenotfound
call %1\bin\setenv.bat %1 %2
set DDKBUILD=1
color 71
title DDK build %1 %2
goto finish
:ddkfilenotfound
echo.
echo File %1\bin\setenv.bat not found - make sure %1 is the correct DDK path
echo.
goto finish
:usage
echo.
echo Usage: ddkbuild ^<DDKPATH^> [checked]
echo.
:finish