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.
 
 
 
 
 
 

24 lines
342 B

@echo off
IF "%VCTOOLS%" == "" goto Usage1
setlocal
IF "%1" == "" goto dobuild
goto Usage2
:dobuild
nmake %1 %2 %3 %4 %5 %6 %7 %8
endlocal
goto End
:Usage1
echo The environment variable VCTOOLS must be set to point
echo to the root of your VC++ installation.
goto End
:Usage2
echo "bldnt" builds the runtimes for Win32 platform.
:End