2008-08-04 22:28 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmake/hbmake.prg
     ! Several minor typos corrected in main help screen.
This commit is contained in:
Viktor Szakats
2008-08-04 20:29:21 +00:00
parent dc44a8e991
commit 2f037ea8dd
2 changed files with 15 additions and 10 deletions

View File

@@ -8,6 +8,10 @@
2008-12-31 13:59 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2008-08-04 22:28 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmake/hbmake.prg
! Several minor typos corrected in main help screen.
2008-08-04 22:16 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* source/rtl/filesys.c
* Minor formatting. [ Thanks for the patches, they got

View File

@@ -5871,21 +5871,22 @@ FUNCTION ShowHelp()
HbMake_Copyright() + HB_OSNewLine() +;
HB_OSNewLine() +;
"Syntax: hbmake <makefile> [switches]" + HB_OSNewLine() +;
HB_OSNewLine() +;
"Switches:" + HB_OSNewLine() +;
" -b Use Bcc as the C compiler. This options is default under Win32" + HB_OSNewLine() +;
" -g Use Gcc as the C compiler. This options is default under OS/2" + HB_OSNewLine() +;
" -gl Use Gcc as the C compiler on Linux" + HB_OSNewLine() +;
" -b Use BCC as the C compiler. This options is default under Win32" + HB_OSNewLine() +;
" -g Use GCC as the C compiler. This options is default under OS/2" + HB_OSNewLine() +;
" -gl Use GCC as the C compiler on Linux" + HB_OSNewLine() +;
" -v Use MSVC as the C compiler" + HB_OSNewLine() +;
" -D Define an macro. Multiple macros can be used in an single line" + HB_OSNewLine() +;
" -D Define a macro. Multiple macros can be used in a single line" + HB_OSNewLine() +;
" Ex: -DOBJ=c.obj;d.obj" + HB_OSNewLine() +;
" Multiple -D is also supported" + HB_OSNewLine() +;
" -p Print all command and defines" + HB_OSNewLine() +;
" -f Force all files to be rebuild" + HB_OSNewLine() +;
" -e Open the editor mode." + HB_OSNewLine() +;
" -p Print all commands and defines" + HB_OSNewLine() +;
" -f Force all files to be rebuilt" + HB_OSNewLine() +;
" -e Open the editor mode" + HB_OSNewLine() +;
" -ec create/edit and compile (only for a unique prg)" + HB_OSNewLine() +;
" -ex Open the editor mode in extended mode" + HB_OSNewLine() +;
" -el Open the editor mode for creating libraries." + HB_OSNewLine() +;
" -elx Open the editor mode for creating libraries in extented mode." + HB_OSNewLine() +;
" -el Open the editor mode for creating libraries" + HB_OSNewLine() +;
" -elx Open the editor mode for creating libraries in extended mode" + HB_OSNewLine() +;
" -i Ignore errors returned by commands" + HB_OSNewLine() +;
" -r Recurse directories for source code" + HB_OSNewLine() +;
HB_OSNewLine() +;
@@ -5896,7 +5897,7 @@ RETURN NIL
*-------------------
FUNCTION HbMake_ID()
*-------------------
RETURN ( "HbMake v"+s_cHbMakeVersion+" - Harbour Make Utility")
RETURN ( "HBMake v"+s_cHbMakeVersion+" - Harbour Make Utility")
*--------------------------
FUNCTION HbMake_Copyright()