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

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