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.

83 lines
3.5 KiB

  1. CDROOT=$(_NTTREE)\inetsrv
  2. SymbolsROOT=$(_NTTREE)\symbols\inetsrv\dll
  3. copyfile:
  4. !ifdef _NTTREE
  5. if not exist "$(CDROOT)" mkdir $(CDROOT)
  6. if not exist "$(SymbolsROOT)" mkdir $(SymbolsROOT)
  7. # copy wwwroot
  8. xcopy /verifdy ..\wwwroot $(CDROOT)\wwwroot
  9. rd /s /q $(CDROOT)\wwwroot\iissamp\homepage
  10. rename $(CDROOT)\wwwroot\iissamp\hp homepage
  11. rename $(CDROOT)\wwwroot\iissamp\homepage\tms themes
  12. # copy admin samples stuff
  13. xcopy /verifdy ..\admsamp $(CDROOT)\admsamp
  14. # copy html admin stuff over
  15. xcopy /verifdy ..\htmla $(CDROOT)\htmla
  16. # copy iisdoc stuff
  17. # xcopy /verifdy ..\help\relnotes $(CDROOT)\help\relnotes
  18. # xcopy /verifdy ..\help\iisnts\htm\sdk $(CDROOT)\help\sdk
  19. # xcopy /verifdy ..\help\iisnts\htm\mm $(CDROOT)\help\mm
  20. echo f |xcopy /verifdy ..\help\pwsw95\misc\tips.dat $(CDROOT)\help\tips.dat
  21. -del $(CDROOT)\help\common\DialogLayout.class
  22. -del $(CDROOT)\help\common\ElementList.class
  23. -del $(CDROOT)\help\common\IndexPanel.class
  24. -del $(CDROOT)\help\common\RelatedDialog.class
  25. -del $(CDROOT)\help\common\SitemapParser.class
  26. -del $(CDROOT)\help\common\TreeCanvas.class
  27. xcopy /verifdy ..\help\common $(CDROOT)\help\common
  28. rename $(CDROOT)\help\common\DialogLa.class DialogLayout.class
  29. rename $(CDROOT)\help\common\ElementL.class ElementList.class
  30. rename $(CDROOT)\help\common\IndexPan.class IndexPanel.class
  31. rename $(CDROOT)\help\common\RelatedD.class RelatedDialog.class
  32. rename $(CDROOT)\help\common\SiteMapP.class SitemapParser.class
  33. rename $(CDROOT)\help\common\TreeCanv.class TreeCanvas.class
  34. xcopy /verifd ..\help\fonts $(CDROOT)\help\fonts
  35. xcopy /verifd ..\help\htmldocs $(CDROOT)\help\htmldocs
  36. xcopy /verifd ..\help\iisnts\htm\admsamp $(CDROOT)\help\admsamp
  37. xcopy ..\help\default.htm $(CDROOT)\help
  38. xcopy /verifd ..\help\iisnts\htm\core $(CDROOT)\help\NTS\ismcore\core
  39. xcopy /verifd ..\help\iisnts\misc $(CDROOT)\help\NTS\ismcore\misc
  40. xcopy ..\help\iisnts\default.htm $(CDROOT)\help\NTS\ismcore
  41. xcopy /verifd ..\help\iisntw\htm\core $(CDROOT)\help\NTW\ismcore\core
  42. xcopy /verifd ..\help\iisntw\misc $(CDROOT)\help\NTW\ismcore\misc
  43. xcopy ..\help\iisntw\default.htm $(CDROOT)\help\NTW\ismcore
  44. # xcopy /verifd ..\help\pwsw95\htm\core $(CDROOT)\help\W95\pwmcore\core
  45. xcopy /verifd ..\help\pwsw95\misc $(CDROOT)\help\W95\pwmcore\misc
  46. del $(CDROOT)\help\W95\pwmcore\misc\tips.dat
  47. xcopy ..\help\pwsw95\default.htm $(CDROOT)\help\W95\pwmcore
  48. xcopy /verifdy ..\help\iisnts\htm\asp $(CDROOT)\help\asp
  49. xcopy /verifdy ..\help\iisnts\htm\tutorial $(CDROOT)\help\tutorial
  50. # copy custom error stuff over
  51. xcopy /verifd ..\custerr $(CDROOT)\custerr
  52. xcopy /verifdy ..\help\iisnts\winhelp $(CDROOT)\help\ismhelp
  53. xcopy /verifdy ..\help\pwsw95\winhelp $(CDROOT)\help\pwmhelp
  54. xcopy /verifdy ..\help\iisntw\htm\tour $(CDROOT)\htmla\tour
  55. xcopy /verifdy ..\help\iisntw\bin $(CDROOT)\help
  56. # copy over files which will go into winnt\help
  57. xcopy /verifdy ..\help\iisnts\htmlhelp $(CDROOT)\help\help\nts
  58. xcopy /verifdy ..\help\iisntw\htmlhelp $(CDROOT)\help\help\ntw
  59. # copy wolfpack ( clustering )stuff
  60. # xcopy /ry $(TARGET_DIRECTORY)\wp\regcladm.exe $(CDROOT)
  61. # copy aspjava files
  62. rd /s /q $(CDROOT)\AspJava
  63. xcopy /dy /i /r ..\aspjava\*.* $(CDROOT)\AspJava
  64. # copy sdk stuff
  65. xcopy /verifdy ..\sdksamp $(CDROOT)\iissamp\sdk
  66. # copy new iis5 SSE docs
  67. xcopy /verifdy ..\help\sse $(CDROOT)\help\sse
  68. !endif