author | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2004-07-05 01:53:09 (UTC) |
commit | a1487b3fc0313408525cd5b2f3bc4a462df351f7 (patch) (unidiff) | |
tree | 010aec6c2abd5ada2f909ac6798c93bf22508bf5 /makehelp.bat | |
download | klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.zip klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.tar.gz klog-a1487b3fc0313408525cd5b2f3bc4a462df351f7.tar.bz2 |
initial commit into svn repository
git-svn-id: http://svn.klever.net/kin/klog/trunk@1 fe716a7a-6dde-0310-88d9-d003556173a8
-rw-r--r-- | makehelp.bat | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/makehelp.bat b/makehelp.bat new file mode 100644 index 0000000..1e4e179 --- a/dev/null +++ b/makehelp.bat | |||
@@ -0,0 +1,33 @@ | |||
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 KLOG.HPJ. >"help\klog.hm" | ||
4 | echo. >>"help\klog.hm" | ||
5 | echo // Commands (ID_* and IDM_*) >>"help\klog.hm" | ||
6 | makehm ID_,HID_,0x10000 IDM_,HIDM_,0x10000 resource.h >>"help\klog.hm" | ||
7 | echo. >>"help\klog.hm" | ||
8 | echo // Prompts (IDP_*) >>"help\klog.hm" | ||
9 | makehm IDP_,HIDP_,0x30000 resource.h >>"help\klog.hm" | ||
10 | echo. >>"help\klog.hm" | ||
11 | echo // Resources (IDR_*) >>"help\klog.hm" | ||
12 | makehm IDR_,HIDR_,0x20000 resource.h >>"help\klog.hm" | ||
13 | echo. >>"help\klog.hm" | ||
14 | echo // Dialogs (IDD_*) >>"help\klog.hm" | ||
15 | makehm IDD_,HIDD_,0x20000 resource.h >>"help\klog.hm" | ||
16 | echo. >>"help\klog.hm" | ||
17 | echo // Frame Controls (IDW_*) >>"help\klog.hm" | ||
18 | makehm IDW_,HIDW_,0x50000 resource.h >>"help\klog.hm" | ||
19 | REM -- Make help for Project KLOG | ||
20 | |||
21 | echo Building RTF file | ||
22 | xsltproc -o help/klog.rtf shared-code/kinhelp.xsl help/klog.xml | ||
23 | echo Building Win32 Help files | ||
24 | start /wait hcrtf -x "help\klog.hpj" | ||
25 | echo. | ||
26 | if exist Debug\nul copy "help\klog.hlp" Debug | ||
27 | if exist Debug\nul copy "help\klog.cnt" Debug | ||
28 | if exist Release\nul copy "help\klog.hlp" Release | ||
29 | if exist Release\nul copy "help\klog.cnt" Release | ||
30 | if exist Releast\nul copy "help\klog.hlp" Releast | ||
31 | if exist Releast\nul copy "help\klog.cnt" Releast | ||
32 | echo. | ||
33 | |||