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.

51 lines
1.2 KiB

  1. munge_inf:
  2. perl iisinfsp.pl
  3. #-------------------------------------------------------
  4. # the following are old stuff, not used for service pack
  5. iCPU=$(PROCESSOR_ARCHITECTURE)
  6. !IF "$(iCPU)"=="x86"
  7. iCPU=I386
  8. !ENDIF
  9. !IF "$(PROCESSOR_ARCHITECTURE)"!="MIPS"
  10. !IF "$(PROCESSOR_ARCHITECTURE)"!="PPC"
  11. CDROOT=$(_NTTREE)\inetsrv
  12. CDDUMP=$(_NTTREE)\inetsrv\Dump
  13. MY_BINPLACE = -binplace -P $(BINPLACE_PLACEFILE)
  14. copyfile:
  15. if not exist "$(CDROOT)" mkdir $(CDROOT)
  16. if not exist "$(CDDUMP)" mkdir $(CDDUMP)
  17. # keep around so can run standalone setup
  18. $(MY_BINPLACE) setup.exe
  19. # stuff we really do need
  20. $(MY_BINPLACE) infutil.csv
  21. $(MY_BINPLACE) header.ddf
  22. $(MY_BINPLACE) makecab.lst
  23. $(MY_BINPLACE) makecab.cmd
  24. $(MY_BINPLACE) makecab1.cmd
  25. $(MY_BINPLACE) chkcab.cmd
  26. $(MY_BINPLACE) hardcode.lst
  27. $(MY_BINPLACE) iistop.inx
  28. $(MY_BINPLACE) iisend.inx
  29. $(MY_BINPLACE) dirmake.txt
  30. # --------------------------------------
  31. # old bad way of copying files to the binaries dir
  32. # bad bad bad, you should not use xcopy!
  33. # use binplace and modify the placefil.txt file
  34. # --------------------------------------
  35. # xcopy /d /i header*.inf $(CDDUMP)
  36. !ENDIF
  37. !ENDIF