Browse Subversion Repository
Annotation of /branches/4-stable/doc/makechm.bat
Parent Directory
| Revision Log
Revision 4741 -
( hide annotations)
( download)
( as text)
Wed Nov 23 09:27:06 2011 UTC
(12 years, 4 months ago)
by yutakapon
Original Path: trunk/doc/makechm.bat
File MIME type: application/x-msdos-program
File size: 660 byte(s)
HTML Help Workshopを 64bit 版Windows にインストールした場合において、
正しくヘルプコンパイラが呼び出せるようにした。
| 1 |
yutakapon |
4741 |
|
| 2 |
|
|
if exist "%Programfiles(x86)%\HTML Help Workshop\hhc.exe" ( |
| 3 |
|
|
set HELP_COMPILER="%Programfiles(x86)%\HTML Help Workshop\hhc.exe" |
| 4 |
|
|
) else ( |
| 5 |
|
|
set HELP_COMPILER=C:\progra~1\htmlhe~1\hhc.exe |
| 6 |
|
|
) |
| 7 |
|
|
|
| 8 |
maya |
4613 |
set updated= |
| 9 |
|
|
|
| 10 |
maya |
3227 |
CALL convtext.bat |
| 11 |
|
|
|
| 12 |
maya |
4613 |
for /f "delims=" %%i in ('perl htmlhelp_update_check.pl ja teratermj.chm') do @set updated=%%i |
| 13 |
|
|
if "%updated%"=="updated" ( |
| 14 |
yutakapon |
4405 |
perl htmlhelp_index_make.pl ja html > ja\Index.hhk |
| 15 |
maya |
4613 |
%HELP_COMPILER% ja\teraterm.hhp |
| 16 |
|
|
) |
| 17 |
|
|
|
| 18 |
|
|
for /f "delims=" %%i in ('perl htmlhelp_update_check.pl en teraterm.chm') do @set updated=%%i |
| 19 |
|
|
if "%updated%"=="updated" ( |
| 20 |
yutakapon |
4405 |
perl htmlhelp_index_make.pl en html > en\Index.hhk |
| 21 |
maya |
3227 |
%HELP_COMPILER% en\teraterm.hhp |
| 22 |
maya |
4613 |
) |
|