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.
 
 
 
 
 
 

32 lines
451 B

@echo off
rem builds burnslib and all the dependent projects
build -cZ
if ERRORLEVEL 1 goto ERROR
for /f "eol=;" %%i in (dependents.txt) do (
echo building %SDXROOT%\%%i
pushd %SDXROOT%\%%i
if ERRORLEVEL 1 goto ERROR2
build -cZ
if ERRORLEVEL 1 goto ERROR
popd
)
echo build-with-dependents finished.
goto END
:ERROR
echo build failed.
goto END
:ERROR2
echo missing enlistment?
goto END
:END