2009-02-13 20:10 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

* make_b32.bat
  * tests/rddtest/make_c52.bat
  * tests/run_prg.bat
  * tests/hbmk_gnu.bat
  * tests/hbmk_vc.bat
  * tests/hbmk_b32.bat
  * tests/run_prg_all.bat
  * bin/hbmk.bat
  * bin/hbmk_os2.cmd
  * bin/postinst.bat
  * make_vc.bat
  * make_gnu_os2.cmd
  * make_gnu.bat
  * contrib/make_b32_all.bat
  * contrib/mtpl_b32.bat
  * contrib/make_vc_all.bat
  * contrib/mtpl_vc.bat
  * contrib/examples/pp/hbmk.bat
  * contrib/examples/guestbk/hbmk.bat
  * contrib/examples/pe/hbmk.bat
  * contrib/examples/hbsqlit2/tests/hbmk.bat
  * contrib/examples/uhttpd/hbmk.bat
  * contrib/examples/dbu/hbmk.bat
  * contrib/examples/terminal/hbmk.bat
  * contrib/examples/terminal/hbmk_trm_appn.bat
  * contrib/examples/hscript/hbmk.bat
  * contrib/examples/rl/hbmk.bat
  * utils/hbdoc/hbmk.bat
  * utils/hbextern/make_c5x.bat
  * utils/hbmake/hbmk.bat
  * utils/hbtest/make_c5x.bat
  * utils/hbtest/make_xpp.bat
    * Minor formatting.
    * Cleanups to refer to simply 'hbmk'.

  ; TODO: Add support for other than bcc/msvc compiler for
          HB_USER_LIBS. Change HB_USER_LIBS settings to
          contain the raw lib list without extensions.
          This is where batch capabilities end, so this
          might need a .prg rewrite.
This commit is contained in:
Viktor Szakats
2009-02-13 19:24:37 +00:00
parent 24037047eb
commit 4bc0533891
33 changed files with 148 additions and 86 deletions

View File

@@ -8,12 +8,51 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-02-13 20:10 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* make_b32.bat
* tests/rddtest/make_c52.bat
* tests/run_prg.bat
* tests/hbmk_gnu.bat
* tests/hbmk_vc.bat
* tests/hbmk_b32.bat
* tests/run_prg_all.bat
* bin/hbmk.bat
* bin/hbmk_os2.cmd
* bin/postinst.bat
* make_vc.bat
* make_gnu_os2.cmd
* make_gnu.bat
* contrib/make_b32_all.bat
* contrib/mtpl_b32.bat
* contrib/make_vc_all.bat
* contrib/mtpl_vc.bat
* contrib/examples/pp/hbmk.bat
* contrib/examples/guestbk/hbmk.bat
* contrib/examples/pe/hbmk.bat
* contrib/examples/hbsqlit2/tests/hbmk.bat
* contrib/examples/uhttpd/hbmk.bat
* contrib/examples/dbu/hbmk.bat
* contrib/examples/terminal/hbmk.bat
* contrib/examples/terminal/hbmk_trm_appn.bat
* contrib/examples/hscript/hbmk.bat
* contrib/examples/rl/hbmk.bat
* utils/hbdoc/hbmk.bat
* utils/hbextern/make_c5x.bat
* utils/hbmake/hbmk.bat
* utils/hbtest/make_c5x.bat
* utils/hbtest/make_xpp.bat
* Minor formatting.
* Cleanups to refer to simply 'hbmk'.
; TODO: Add support for other than bcc/msvc compiler for
HB_USER_LIBS. Change HB_USER_LIBS settings to
contain the raw lib list without extensions.
This is where batch capabilities end, so this
might need a .prg rewrite.
2009-02-13 19:00 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* bin/hbmk.bat
% Compiler detection made faster.
; TOFIX: MinGW requires different library names than the rest
of compilers, so it currently won't work for hbmk.bat
files where HB_USER_LIBS is set.
+ contrib/examples/pp/hbmk.bat
- contrib/examples/pp/hbmk_b32.bat

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem Copyright 2003 Przemyslaw Czerpak (druzus / at / priv.onet.pl)

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
set HB_DIR_DBU=%CLIPPER_DIR%\SOURCE\DBU
if exist "%HB_DIR_DBU%\DBU.PRG" goto DIR_OK
@@ -23,6 +24,6 @@ if exist hb_dbu.dif patch -N -i hb_dbu.dif
:DIR_OK
..\..\..\bin\%~nx0 %* %HB_DIR_DBU%\DBU.PRG %HB_DIR_DBU%\DBUCOPY.PRG %HB_DIR_DBU%\DBUEDIT.PRG %HB_DIR_DBU%\DBUHELP.PRG %HB_DIR_DBU%\DBUINDX.PRG %HB_DIR_DBU%\DBUNET.PRG %HB_DIR_DBU%\DBUSTRU.PRG %HB_DIR_DBU%\DBUUTIL.PRG %HB_DIR_DBU%\DBUVIEW.PRG
..\..\..\bin\hbmk %* %HB_DIR_DBU%\DBU.PRG %HB_DIR_DBU%\DBUCOPY.PRG %HB_DIR_DBU%\DBUEDIT.PRG %HB_DIR_DBU%\DBUHELP.PRG %HB_DIR_DBU%\DBUINDX.PRG %HB_DIR_DBU%\DBUNET.PRG %HB_DIR_DBU%\DBUSTRU.PRG %HB_DIR_DBU%\DBUUTIL.PRG %HB_DIR_DBU%\DBUVIEW.PRG
:EXIT

View File

@@ -2,4 +2,4 @@
@rem $Id$
@rem
@..\..\..\bin\%~nx0 %* guestbk.prg inifiles.prg testcgi.prg
@..\..\..\bin\hbmk %* guestbk.prg inifiles.prg testcgi.prg

View File

@@ -4,4 +4,4 @@
@set HB_USER_LIBS=hbsqlit2.lib sqlite2.lib
@..\..\..\..\bin\%~nx0 %*
@..\..\..\..\bin\hbmk %*

View File

@@ -4,4 +4,4 @@
@set HB_USER_LIBS=hbnf.lib
@..\..\..\bin\%~nx0 %* hscript.prg
@..\..\..\bin\hbmk %* hscript.prg

View File

@@ -2,4 +2,4 @@
@rem $Id$
@rem
@..\..\..\bin\%~nx0 %* pe.prg editorhi.prg editorlo.c
@..\..\..\bin\hbmk %* pe.prg editorhi.prg editorlo.c

View File

@@ -2,4 +2,4 @@
@rem $Id$
@rem
@..\..\..\bin\%~nx0 %* pp.c hbppcomp.c hbppcore.c hbpptbl.c hbpragma.c
@..\..\..\bin\hbmk %* pp.c hbppcomp.c hbppcore.c hbpptbl.c hbpragma.c

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
set HB_DIR_RL=%CLIPPER_DIR%\SOURCE\RL
if exist "%HB_DIR_RL%\RLFRONT.PRG" goto DIR_OK
@@ -23,6 +24,6 @@ if exist hb_rl.dif patch -N -i hb_rl.dif
:DIR_OK
..\..\..\bin\%~nx0 %* %HB_DIR_RL%\RLBACK.PRG %HB_DIR_RL%\RLDIALG.PRG %HB_DIR_RL%\RLFRONT.PRG
..\..\..\bin\hbmk %* %HB_DIR_RL%\RLBACK.PRG %HB_DIR_RL%\RLDIALG.PRG %HB_DIR_RL%\RLFRONT.PRG
:EXIT

View File

@@ -4,4 +4,4 @@
@set HB_USER_LIBS=gtwvg.lib hbwin.lib xhb.lib comdlg32.lib comctl32.lib shell32.lib ole32.lib oleaut32.lib
@..\..\..\bin\%~nx0 -mt -gui %*
@..\..\..\bin\hbmk -mt -gui %*

View File

@@ -4,4 +4,4 @@
@set HB_USER_LIBS=gtwvg.lib hbwin.lib xhb.lib comdlg32.lib comctl32.lib shell32.lib ole32.lib oleaut32.lib
@..\..\..\bin\%~nx0 -mt -gui %* trm_appn.prg terminal.prg
@..\..\..\bin\hbmk -mt -gui %* trm_appn.prg terminal.prg

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
cls
@@ -49,7 +50,7 @@ if exist uhttpd.exe uhttpd -s
set HB_USER_PRGFLAGS=%UHTTP_GD_DEF% %UHTTP_INET_DEF%
set HB_USER_LIBS=xhb.lib hbct.lib %UHTTP_GD_LIBS%
@..\..\..\bin\%~nx0 -mt -gui %* uhttpd.prg cgifunc.prg cookie.prg session.prg uhttpdc.c %UHTTP_INET_SOCKET%
@..\..\..\bin\hbmk -mt -gui %* uhttpd.prg cgifunc.prg cookie.prg session.prg uhttpdc.c %UHTTP_INET_SOCKET%
if errorlevel 1 goto DOERROR
if not exist uhttpd.exe goto :EXIT

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem *******************************************************
rem Bat file for creating (almost all) contrib libs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem *******************************************************
rem Bat file for creating (almost all) contrib libs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem Minimal initialization of environment variables for OS2 GCC build
rem for further information about see make_gnu.bat
@@ -22,7 +23,7 @@ rem the -L compiler/linker option for the library.
rem For building Harbour you can also use HB_USER_LDFLAGS environment variable,
rem f.e.
rem SET HB_USER_LDFLAGS=-Le:\usr\lib\tcpipv4
rem
rem
rem If you are using newer OS2 version with tcp/ip stack >= 4.1
rem (eComStation, for example) and you do not need backward binary
rem compatibility then you can disable it by setting HB_OS2_TCP32

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem This is a generic template file, if it doesn't fit your own needs

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
if "%HB_BIN_INSTALL%" == "" set HB_BIN_INSTALL=..\bin
if "%HB_LIB_INSTALL%" == "" set HB_LIB_INSTALL=..\lib

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
if %HB_ARCHITECTURE%.==. goto BAD_ARCH
if %HB_COMPILER%.==. goto BAD_COMP

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
if "%HB_BIN_INSTALL%" == "" set HB_BIN_INSTALL=..\bin
if "%HB_LIB_INSTALL%" == "" set HB_LIB_INSTALL=..\lib

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem DBFCDX
clipper rddmktst /m/n/w/es2/d_TEST_CMPDIDX_

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
..\bin\harbour %1 -n -i..\include -gh
..\bin\hbrun %1

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ; Generate test_all.bat
call run_prg.bat test_all

View File

@@ -2,4 +2,4 @@
@rem $Id$
@rem
@..\..\bin\%~nx0 hbdoc.prg ft_funcs.prg genasc.prg genchm.prg genhpc.prg genhtm.prg genng.prg genos2.prg genpdf1.prg genrtf.prg gentrf.prg hbdfrdln.c
@..\..\bin\hbmk hbdoc.prg ft_funcs.prg genasc.prg genchm.prg genhpc.prg genhtm.prg genng.prg genos2.prg genpdf1.prg genrtf.prg gentrf.prg hbdfrdln.c

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
clipper hbextern.prg /w /n /i..\..\include\
rtlink fi hbextern

View File

@@ -2,4 +2,4 @@
@rem $Id$
@rem
@..\..\bin\%~nx0 hbmake.prg hbmfrdln.c hbmgauge.c hbmlang.c
@..\..\bin\hbmk hbmake.prg hbmfrdln.c hbmgauge.c hbmlang.c

View File

@@ -1,10 +1,11 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ---------------------------------------------------------------
rem ; NOTE: To compile for CA-Cl*pper 5.3, please use the
rem ; NOTE: To compile for CA-Cl*pper 5.3, please use the
rem command line parameter "53" (without quotes).
rem ---------------------------------------------------------------

View File

@@ -1,7 +1,8 @@
@rem
@rem $Id$
@rem
@echo off
rem
rem $Id$
rem
rem ; TOFIX: Add compilation for C sources
set HB_CLIPOPT=%HB_CLIPOPT% /DRT_NO_C