* harbour/tests/run_prg.bat
* harbour/tests/gnu_test.bat
* harbour/tests/run_test.bat
* harbour/tests/bld4dll.bat
* harbour/doc/genhtm.bat
* harbour/bin/bld.bat
* harbour/bin/postinst.bat
* harbour/bin/bld_b32.bat
* harbour/bin/bld_b16.bat
* harbour/bin/bld_vc.bat
* harbour/make_b32.bat
* harbour/make_vc.bat
* harbour/make_gnu.bat
* harbour/contrib/ole/bldtest.bat
* harbour/contrib/ole/build32.bat
* harbour/contrib/libmisc/make_b32.bat
* harbour/contrib/libmisc/doc/gendoc.bat
* harbour/contrib/libmisc/make_vc.bat
* harbour/contrib/apollo/test/bld.bat
* harbour/contrib/apollo/test/bld_b32.bat
* harbour/contrib/apollo/make_b32.bat
* harbour/contrib/pgsql/make_b32.bat
* harbour/contrib/gd/make_b32.bat
* harbour/contrib/gd/tests/bldtest.bat
* harbour/contrib/libnf/make_b32.bat
* harbour/contrib/libnf/make_vc.bat
* harbour/contrib/htmllib/make_b32.bat
* harbour/contrib/htmllib/make_vc.bat
* harbour/contrib/tip/make_b32.bat
* harbour/contrib/libct/make_b32.bat
* harbour/contrib/libct/make_vc.bat
* harbour/contrib/adordd/make_b32.bat
* harbour/contrib/rdd_ads/doc/gendoc.bat
* harbour/contrib/rdd_ads/make_b32.bat
* harbour/contrib/rdd_ads/make_vc.bat
* harbour/contrib/libgt/make_b32.bat
* harbour/contrib/libgt/doc/gendoc.bat
* harbour/contrib/libgt/make_vc.bat
* harbour/contrib/hbclip/make_clp.bat
* harbour/contrib/btree/make_b32.bat
* harbour/contrib/btree/mktest.bat
* harbour/contrib/ole2/make_b32.bat
* harbour/contrib/directx/buvcdx.bat
* harbour/contrib/hgf/tests/build_b32.bat
* harbour/contrib/hgf/win32/make_b32.bat
* harbour/contrib/hgf/win32/makevc.bat
* harbour/contrib/samples/make_b32.bat
* harbour/contrib/samples/make_vc.bat
* harbour/contrib/delphi/hbdll/start.bat
* harbour/contrib/delphi/hbdll/bld_sdll.bat
* harbour/contrib/mysql/make_b32.bat
* harbour/contrib/runjava/bld_java.bat
* harbour/contrib/runjava/make_vc.bat
* harbour/contrib/odbc/bldodbc.bat
* harbour/contrib/odbc/bld_b32.bat
* harbour/contrib/bmdbfcdx/make_b32.bat
* harbour/contrib/hbzlib/dll_b32.bat
* harbour/contrib/hbzlib/make_b32.bat
* harbour/contrib/hbzlib/make_vc.bat
* harbour/utils/hbextern/make_c5x.bat
* harbour/utils/hbpptest/compare.bat
* harbour/utils/hbtest/make_c5x.bat
* harbour/utils/hbtest/make_xpp.bat
* harbour/samples/guestbk/bld_b32.bat
* harbour/samples/hscript/makehtm.bat
* harbour/samples/hscript/bld_b32.bat
* set svn:eol-style to CRLF
61 lines
1.1 KiB
Batchfile
61 lines
1.1 KiB
Batchfile
@echo off
|
|
rem
|
|
rem $Id$
|
|
rem
|
|
|
|
if "%1" =="/OS2" goto OS2
|
|
if "%1" =="/os2" goto OS2
|
|
if "%1" =="/NGI" goto NG
|
|
if "%1" =="/ngi" goto NG
|
|
if "%1" =="/RTF" goto RTF
|
|
if "%1" =="/rtf" goto RTF
|
|
if "%1" =="/HTM" goto HTM
|
|
if "%1" =="/htm" goto HTM
|
|
ECHO Assembling input files
|
|
:help
|
|
echo.
|
|
echo. Usage gendoc type
|
|
echo. where type is:
|
|
echo. /rtf for Winhelp output
|
|
echo. /os2 for Os/2 help output
|
|
echo. /ngi for Norton Guide output
|
|
echo. /htm for HTML output
|
|
goto END
|
|
|
|
ECHO Assembling input files
|
|
:NG
|
|
hbdoc /ngi libmisc.lnk libmisc.rsp
|
|
REM Compile the sources
|
|
Echo Compiling the sources
|
|
Echo Processing Input Files
|
|
Copy ngi\funcam.txt+ngi\funcn_.txt overview.ngi
|
|
Echo Compiling Sources
|
|
ngxc overview.ngi
|
|
Echo Linking the Guide
|
|
ngxl libmisc.lnk
|
|
del *.ngi
|
|
del *.ngo
|
|
del ngi\*.txt
|
|
del ngi\*.ngi
|
|
del libmisc.lnk
|
|
ren libmisc.old libmisc.lnk
|
|
|
|
GOTO END
|
|
:OS2
|
|
hbdoc /OS2 libmisc.lnk libmisc.rsp
|
|
GOTO END
|
|
:RTF
|
|
hbdoc /RTF libmisc.lnk libmisc.rsp
|
|
HCW HARBOUR.HPJ
|
|
del libmisc.lnk
|
|
ren libmisc.old libmisc.lnk
|
|
|
|
GOTO END
|
|
:HTM
|
|
hbdoc /HTM libmisc.lnk libmisc.rsp
|
|
GOTO END
|
|
:END
|
|
del ass*.bat
|
|
|
|
|