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.

37 lines
417 B

  1. @echo off
  2. if "%1" == "lego" goto lego
  3. :preprocess
  4. if exist internal\cabint.bat goto INTERNAL
  5. :start
  6. if exist wab\cabwab.bat goto WAB
  7. :continue
  8. if exist mailnews\caboe.bat goto OE
  9. goto end
  10. :lego
  11. set lego=l.
  12. goto start
  13. :INTERNAL
  14. cd internal
  15. call cabint.bat
  16. cd ..
  17. goto start
  18. :OE
  19. cd mailnews
  20. call caboe.bat
  21. cd ..
  22. goto end
  23. :WAB
  24. cd wab
  25. call cabwab.bat
  26. cd ..
  27. goto continue
  28. :end