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

  1. @echo off
  2. if NOT DEFINED SdxRoot (
  3. echo You must set %%SDXROOT%% to the full path of your enlistment root, ie D:\NT
  4. goto :EOF
  5. )
  6. if NOT DEFINED RazzleToolPath (
  7. echo You must run this script from a RAZZLE window
  8. goto :EOF
  9. )
  10. echo on
  11. setlocal
  12. pushd %SdxRoot%
  13. nmake -f makefil0 set_buildnum
  14. nmake -f makefil0 set_builddate
  15. call revert_public
  16. @echo on
  17. call sdx sync
  18. @echo on
  19. rd /s /q %_NTPOSTBLD%
  20. cd %SdxRoot%\published\sdk\lib
  21. build -cZ
  22. cd %SdxRoot%\MergedComponents\SetupInfs
  23. build -cZ
  24. cd %SdxRoot%\com\netfx
  25. build -cZ
  26. cd %SdxRoot%
  27. perl tools\timebuild.pl -RESUME
  28. call revert_public
  29. popd
  30. endlocal