2011-02-09 02:27 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbplist
  - contrib/hbrun/hbrunext.hbp
  + contrib/hbrun/hbrun.prg
  + contrib/hbrun/hbrun.hbp
  + contrib/hbrun/hbrun.1
  * config/postinst.hbs
  - utils/hbrun
  * utils/Makefile
    * Moved hbrun to contrib area.
    ; Now it can contain any contrib libs.
This commit is contained in:
Viktor Szakats
2011-02-09 01:28:20 +00:00
parent c207984879
commit 0eedcc3e20
10 changed files with 32 additions and 63 deletions

View File

@@ -16,6 +16,18 @@
The license applies to all entries newer than 2009-04-28.
*/
2011-02-09 02:27 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbplist
- contrib/hbrun/hbrunext.hbp
+ contrib/hbrun/hbrun.prg
+ contrib/hbrun/hbrun.hbp
+ contrib/hbrun/hbrun.1
* config/postinst.hbs
- utils/hbrun
* utils/Makefile
* Moved hbrun to contrib area.
; Now it can contain any contrib libs.
2011-02-09 02:12 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbplist
- contrib/hbrunext

View File

@@ -124,8 +124,8 @@ PROCEDURE Main( ... )
FOR EACH tmp IN { "src/main/harbour.1" ,;
"src/pp/hbpp.1" ,;
"utils/hbmk2/hbmk2.1" ,;
"utils/hbrun/hbrun.1" ,;
"utils/hbtest/hbtest.1" }
"utils/hbtest/hbtest.1" ,;
"contrib/hbrun/hbrun.1" }
mk_hb_FCopy( tmp, GetEnvC( "HB_INSTALL_MAN" ) + hb_ps() + "man1" + hb_ps(), .T. )
NEXT
ELSE

View File

@@ -39,7 +39,7 @@ hbnf/hbnf.hbp
hbodbc/hbodbc.hbp
hbpgsql/hbpgsql.hbp
hbqt/hbqt_all.hbp
hbrun/hbrunext.hbp
hbrun/hbrun.hbp
hbsms/hbsms.hbp
hbsqlit3/hbsqlit3.hbp # uses: sqlite3 (locally hosted)
hbssl/hbssl.hbp

View File

@@ -2,18 +2,29 @@
# $Id$
#
-inc
-w3 -es2 -l
-kmo
@../../utils/hbrun/hbrun.hbp
-DHBRUN_WITH_HEADERS
-o${hb_name}
-ldflag={allmsvc}-nxcompat
-ldflag={allmsvc}-dynamicbase
-ldflag={allmsvc}-fixed:no
# not required, for convenience only
-mt
hbrun.prg
-request=__hbrun_extensions
pullext.prg
# Always build in shared mode for these platforms because the
# tool is included in std distro and we want to minimize its size.
{_HB_BUILD_&(!(HB_BUILD_DYN='no')&(win|wce|os2))}-shared
-lhbcplr
-lhbpp
-lhbcommon
-icon={allwin}../../package/harb_win.ico
-icon={os2}../../package/harb_os2.ico
# Here comes the list of contribs linked in:
# - Make sure to keep it in sync with pullext.prg.

View File

@@ -13,7 +13,6 @@ ifneq ($(HB_BUILD_PARTS),compiler)
DIRS += \
hbi18n \
hbrun \
hbtest \
$(__HB_UTIL_ADDONS)

View File

@@ -1,21 +0,0 @@
#
# $Id$
#
ROOT := ../../
include $(TOP)$(ROOT)config/global.mk
PRG_SOURCES := \
hbrun.prg \
RC_SOURCES := \
hbrun.rc
PRG_MAIN := hbrun.prg
LIBS = hbcplr hbpp hbcommon $(HB_LIBS_MT_RDD)
HB_PRGFLAGS += -DHBRUN_WITH_HEADERS
include $(TOP)$(ROOT)config/bin.mk

View File

@@ -1,23 +0,0 @@
#
# $Id$
#
-q0 -w3 -es2 -kmo -l
-DHBRUN_WITH_HEADERS
-ldflag={allmsvc}-nxcompat
-ldflag={allmsvc}-dynamicbase
-ldflag={allmsvc}-fixed:no
# not required, for convenience only
-mt
hbrun.prg
-lhbcplr
-lhbpp
-lhbcommon
-icon={allwin}../../package/harb_win.ico
-icon={os2}../../package/harb_os2.ico

View File

@@ -1,9 +0,0 @@
/*
* $Id$
*/
#if defined( OS2 ) || defined( __OS2__ ) || defined( OS_2 )
ICON 1 DISCARDABLE "../../../../../package/harb_os2.ico"
#else
1 ICON DISCARDABLE "../../../../../package/harb_win.ico"
#endif