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
413 B

  1. @echo off
  2. if "%1" == "" goto usage
  3. if not exist "%1\bin\setenv.bat" goto ddkfilenotfound
  4. call %1\bin\setenv64.bat %1 %2
  5. set DDKBUILD=1
  6. color 71
  7. title 64 bit DDK build %1 %2
  8. goto finish
  9. :ddkfilenotfound
  10. echo.
  11. echo File %1\bin\setenv.bat not found - make sure %1 is the correct DDK path
  12. echo.
  13. goto finish
  14. :usage
  15. echo.
  16. echo Usage: ddkbuild64 ^<DDKPATH^> [checked]
  17. echo.
  18. :finish