diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 819d18389a..f20479f249 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2008-12-31 13:59 UTC+0100 Foo Bar */ +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 diff --git a/harbour/utils/hbmake/hbmake.prg b/harbour/utils/hbmake/hbmake.prg index 38527bccb3..769a93f886 100644 --- a/harbour/utils/hbmake/hbmake.prg +++ b/harbour/utils/hbmake/hbmake.prg @@ -5871,21 +5871,22 @@ FUNCTION ShowHelp() HbMake_Copyright() + HB_OSNewLine() +; HB_OSNewLine() +; "Syntax: hbmake [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()