makehelp.bat
上传用户:biuytresa
上传日期:2007-12-07
资源大小:721k
文件大小:2k
源码类别:

DNA

开发平台:

Visual C++

  1. @echo off
  2. REM -- First make map file from Microsoft Visual C++ generated resource.h
  3. echo // MAKEHELP.BAT generated Help Map file.  Used by OCLIENT.HPJ. >"hlpOCLIENT.hm"
  4. echo. >>"hlpOCLIENT.hm"
  5. echo // Commands (ID_* and IDM_*) >>"hlpOCLIENT.hm"
  6. makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"hlpOCLIENT.hm"
  7. echo. >>"hlpOCLIENT.hm"
  8. echo // Prompts (IDP_*) >>"hlpOCLIENT.hm"
  9. makehm IDP_,HIDP_,0x30000 resource.h >>"hlpOCLIENT.hm"
  10. echo. >>"hlpOCLIENT.hm"
  11. echo // Resources (IDR_*) >>"hlpOCLIENT.hm"
  12. makehm IDR_,HIDR_,0x20000 resource.h >>"hlpOCLIENT.hm"
  13. echo. >>"hlpOCLIENT.hm"
  14. echo // Dialogs (IDD_*) >>"hlpOCLIENT.hm"
  15. makehm IDD_,HIDD_,0x20000 resource.h >>"hlpOCLIENT.hm"
  16. echo. >>"hlpOCLIENT.hm"
  17. echo // Frame Controls (IDW_*) >>"hlpOCLIENT.hm"
  18. makehm IDW_,HIDW_,0x50000 resource.h >>"hlpOCLIENT.hm"
  19. REM -- Make help for Project OCLIENT
  20. if "%1" == "?" goto :Error
  21. if "%1" == "/?" goto :Error
  22. if "%1" == "-?" goto :Error
  23. if "%1" == "help" goto :Error
  24. if "%1" == "-help" goto :Error
  25. if "%1" == "/help" goto :Error
  26. if "%1" == "MAC" goto Mac
  27. :Intel
  28. if not "%1" == "" goto :Error
  29. if not "%2" == "" goto :Error
  30. echo Building Win32 Help files
  31. start /wait hcrtf -x hlpOCLIENT.hpj
  32. echo.
  33. if exist Debugnul if exist hlpoclient.hlp copy "hlpOCLIENT.hlp" Debug
  34. if exist Debugnul if exist hlpoclient.cnt copy "hlpOCLIENT.cnt" Debug
  35. if exist Releasenul if exist hlpoclient.hlp copy "hlpOCLIENT.hlp" Release
  36. if exist Releasenul if exist hlpoclient.cnt copy "hlpOCLIENT.cnt" Release
  37. if exist UniDebugnul if exist hlpoclient.hlp copy "hlpOCLIENT.hlp" UniDebug
  38. if exist UniDebugnul if exist hlpoclient.cnt copy "hlpOCLIENT.cnt" UniDebug
  39. if exist UniReleasenul if exist hlpoclient.hlp copy "hlpOCLIENT.hlp" UniRelease
  40. if exist UniReleasenul if exist hlpoclient.cnt copy "hlpOCLIENT.cnt" UniRelease
  41. goto :done
  42. :Mac
  43. echo Building Macintosh Help files
  44. call hc35 hlpOCLIMac.hpj
  45. if %2x == x goto :done
  46. REM if exist PMacDbgnul copy "OCLIMac.hlp" PMacDbgOCLIENT.HLP
  47. REM if exist PMacRelnul copy "OCLIMac.hlp" PMacRelOCLIENT.HLP
  48. REM if exist MacDbgnul copy "OCLIMac.hlp" MacDbgOCLIENT.HLP
  49. REM if exist MacRelnul copy "OCLIMac.hlp" MacRelOCLIENT.HLP
  50. echo Copying to remote machine
  51. mfile copy -c MSH2 -t HELP "OCLIMac.hlp" %2
  52. goto :done
  53. :Error
  54. echo Usage MAKEHELP [MAC [macintosh-path]]
  55. echo       Where macintosh-path is of the form:
  56. echo       ":<MacintoshName>:...:<MacintoshHelpFile>"
  57. :done
  58. echo.