diff --git a/harbour/ChangeLog.txt b/harbour/ChangeLog.txt index 550fb8b9b2..899130967c 100644 --- a/harbour/ChangeLog.txt +++ b/harbour/ChangeLog.txt @@ -10,6 +10,13 @@ * Change, ! Fix, % Optimization, + Addition, - Removal, ; Comment */ +2013-02-11 01:45 UTC+0100 Viktor Szakats (harbour syenar.net) + * utils/hbmk2/hbmk2.prg + + documented $*.hbm embedded .hbm include files + + * utils/hbmk2/pkg_inst.hbm + * avoid explicit "hbmk2" + 2013-02-11 01:30 UTC+0100 Viktor Szakats (harbour syenar.net) * utils/hbmk2/hbmk2.prg + documented all predefined source and build file macros diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 653bd33602..2c7d21185d 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -14954,7 +14954,9 @@ STATIC PROCEDURE ShowHelp( hbmk, lFull, lLong ) { "*.hrb" , I_( "Harbour portable binary (aka precompiled script)" ) }, ; { "*.ch" , I_( "if passed directly as a source file, it will be used as additional standard header" ) }, ; { _HBMK_AUTOHBC_NAME , hb_StrFormat( I_( "standard .hbc file that gets automatically processed, if present. Possible location(s) (in order of precedence): %1$s" ), ArrayToList( AutoConfPathList(), ", " ) ) }, ; - { _HBMK_AUTOHBM_NAME , I_( "optional .hbm file residing in current working directory, which gets automatically processed before other options" ) } } + { _HBMK_AUTOHBM_NAME , I_( "optional .hbm file residing in current working directory, which gets automatically processed before other options" ) }, ; + { _HBMK_BUILDIN_FILENAME_MARKER_ + "hb_pkg_dynlib.hbm" , hb_StrFormat( I_( "special .hbm file embedded inside %1$s. It manages the details of creating a dynamic library (in the style of Harbour contribs)." ), _SELF_NAME_ ) } , ; + { _HBMK_BUILDIN_FILENAME_MARKER_ + "hb_pkg_install.hbm", hb_StrFormat( I_( "special .hbm file embedded inside %1$s. It manages the details of installing targets and related package files to standard locations (in the style of Harbour contribs)." ), _SELF_NAME_ ) } } LOCAL aText_Macros := { ; "", ; diff --git a/harbour/utils/hbmk2/pkg_inst.hbm b/harbour/utils/hbmk2/pkg_inst.hbm index 7cc5491c53..a90f89a3e4 100644 --- a/harbour/utils/hbmk2/pkg_inst.hbm +++ b/harbour/utils/hbmk2/pkg_inst.hbm @@ -2,7 +2,7 @@ # $Id$ # -# hbmk2 include file to setup standard installation rules +# Include file to setup standard installation rules # for 3rd party packages. To use it just add the line # '$hb_pkg_install.hbm' to the beginning of your project # .hbp file. [vszakats]