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.

38 lines
745 B

  1. echo off
  2. set HOST_TARGET_DIRECTORY=ia64
  3. if %1x==x goto err
  4. if %1==checked goto setup
  5. if %1==free goto setup
  6. if %1==icecap goto setup
  7. if %1==retail goto setup
  8. goto err
  9. :setup
  10. if %1==checked set SUFFIX=CHK
  11. if %1==free set SUFFIX=FRE
  12. if %1==icecap set SUFFIX=ICE
  13. if %1==retail set SUFFIX=RET
  14. REM The source for all but checked drops will be the free build.
  15. set SOURCE=free
  16. if %1==checked set SOURCE=%1
  17. set DropDIR=..\..\drop\IA64%SUFFIX%\Config
  18. set TestDIR=..\..\Test\IA64%SUFFIX%\Config
  19. md %DropDIR%
  20. md %DropDIR%\URT
  21. md %DropDIR%\IIS
  22. md %TestDIR%
  23. call makedropcommon.cmd %SOURCE% %SUFFIX%
  24. rem ADD HERE THE FILES WHICH ARE SPECIFIC TO IA64
  25. goto end
  26. :err
  27. echo You must specify checked, free, or icecap
  28. :end
  29. set HOST_TARGET_DIRECTORY=