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