2010-07-23 14:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/make.hbs
    + Accept package simply as 'hbmylib'. In such case it will 
      use 'hbmylib/hbmylib.hbp' as project file.
This commit is contained in:
Viktor Szakats
2010-07-23 12:02:29 +00:00
parent 319d515799
commit b5e40738d2
2 changed files with 12 additions and 1 deletions

View File

@@ -16,6 +16,11 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-07-23 14:02 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/make.hbs
+ Accept package simply as 'hbmylib'. In such case it will
use 'hbmylib/hbmylib.hbp' as project file.
2010-07-23 13:04 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
- Deleted handling of .hbi extension.

View File

@@ -156,7 +156,7 @@ PROCEDURE Standalone( ... )
cOptionsUser += " " + tmp
/* If anything else is passed the options or GNU Make keywords,
/* If anything else is passed than options or GNU Make keywords,
consider it a custom project build, f.e. in tests */
IF !( Left( tmp, 1 ) == "-" )
lCustom := .T.
@@ -683,6 +683,12 @@ PROCEDURE AddPkg( hPackageList, cFileName )
IF ! Empty( cFileName )
hb_FNameSplit( PathSepToSelf( AllTrim( cFileName ) ), @cDir, @cName, @cExt )
IF ! Empty( cName ) .AND. Empty( cDir )
cDir := cName
ENDIF
IF Empty( cName )
cName := DirGetName( cDir )
ENDIF
IF Empty( cExt )
cExt := ".hbp"
ENDIF