2007-12-04 10:17 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)

* harbour/contrib/make_b32_all.bat
  * harbour/contrib/make_vc_all.bat
    - Removed the dependancy on a worker bat file
      named make_<b32|vc>.bat. Now a worker bat file
      is created on a fly.

  - harbour/contrib/make_b32.bat
  - harbour/contrib/make_vc.bat
    - Removed. No longer neccesary.
This commit is contained in:
Marek Paliwoda
2007-12-04 09:17:40 +00:00
parent 62ed005979
commit 1087aa836f
5 changed files with 73 additions and 56 deletions

View File

@@ -8,6 +8,17 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-12-04 10:17 UTC+0100 Marek Paliwoda (mpaliwoda at interia pl)
* harbour/contrib/make_b32_all.bat
* harbour/contrib/make_vc_all.bat
- Removed the dependancy on a worker bat file
named make_<b32|vc>.bat. Now a worker bat file
is created on a fly.
- harbour/contrib/make_b32.bat
- harbour/contrib/make_vc.bat
- Removed. No longer neccesary.
2007-12-03 22:35 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/common.mak
* harbour/source/rtl/Makefile

View File

@@ -1,21 +0,0 @@
@echo off
rem
rem $Id: make_b32.bat 7991 2007-11-17 11:42:49Z vszakats $
rem
if "%1" == "" goto ERROR
echo Entering: %1
cd %1
call make_b32.bat %2 %3 %4 %5 %6 %7 %8 %9
cd ..
goto EXIT
:ERROR
echo ----------------------------------------
echo Usage: "make_b32.bat <dirname>"
echo ----------------------------------------
:EXIT

View File

@@ -3,18 +3,35 @@ rem
rem $Id$
rem
rem The compilation is done in three steps. PLEASE DO NOT MODIFY
rem IT or you will break Win9x command.com line length limit !!!
rem *******************************************************
rem The compilation is done in three steps. PLEASE DO NOT MODIFY IT
rem or you will break a Windows9x command.com line length limit !!!
rem *******************************************************
set HB_SHOW_ERRORS=no
rem set DO_NOT_COMPILE=examples hbclip hgf hbwhat32
rem *******************************************************
rem Creating a worker bat file ...
rem *******************************************************
set __BATWORKER__=_hbwrk_.bat
echo @echo off >%__BATWORKER__%
echo if not exist %%1\make_b32.bat goto EXIT >>%__BATWORKER__%
echo echo Entering: %%1 >>%__BATWORKER__%
echo cd %%1 >>%__BATWORKER__%
echo call make_b32.bat %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9 >>%__BATWORKER__%
echo cd .. >>%__BATWORKER__%
rem *******************************************************
rem Compiling contrib dirs ...
rem *******************************************************
set _HB_DIRS=hbrddado hbbmcdx hbbtree hbgtwvg hbct hbgt hbmisc hbnf hbmsql
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_b32.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
set _HB_DIRS=hbole hbziparch hbodbc hbtpathy hbtip hbw32 xhb
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_b32.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
set _HB_DIRS=hbclipsm hbw32ddr
if not "%APOLLO_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbapollo
@@ -24,7 +41,14 @@ if not "%GD_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbgd
if not "%MYSQL_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbmysql
if not "%PGSQL_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbpgsql
if not "%ADS_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbrddads
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_b32.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
rem *******************************************************
rem Cleaning ...
rem *******************************************************
del %__BATWORKER__% > nul
set HB_SHOW_ERRORS=
set _HB_DIRS=
set __BATWORKER__=
set HB_SHOW_ERRORS=

View File

@@ -1,21 +0,0 @@
@echo off
rem
rem $Id: make_vc.bat 7991 2007-11-17 11:42:49Z vszakats $
rem
if "%1" == "" goto ERROR
echo Entering: %1
cd %1
call make_vc.bat %2 %3 %4 %5 %6 %7 %8 %9
cd ..
goto EXIT
:ERROR
echo ----------------------------------------
echo Usage: "make_vc.bat <dirname>"
echo ----------------------------------------
:EXIT

View File

@@ -3,18 +3,35 @@ rem
rem $Id$
rem
rem The compilation is done in three steps. PLEASE DO NOT MODIFY
rem IT or you will break Win9x command.com line length limit !!!
rem *******************************************************
rem The compilation is done in three steps. PLEASE DO NOT MODIFY IT
rem or you will break a Windows9x command.com line length limit !!!
rem *******************************************************
set HB_SHOW_ERRORS=no
rem set DO_NOT_COMPILE=examples hbclip hgf
rem *******************************************************
rem Creating a worker bat file ...
rem *******************************************************
set __BATWORKER__=_hbwrk_.bat
echo @echo off >%__BATWORKER__%
echo if not exist %%1\make_vc.bat goto EXIT >>%__BATWORKER__%
echo echo Entering: %%1 >>%__BATWORKER__%
echo cd %%1 >>%__BATWORKER__%
echo call make_vc.bat %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9 >>%__BATWORKER__%
echo cd .. >>%__BATWORKER__%
rem *******************************************************
rem Compiling contrib dirs ...
rem *******************************************************
set _HB_DIRS=hbrddado hbbmcdx hbbtree hbgtwvg hbct hbgt hbmisc hbnf hbmsql
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_vc.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
set _HB_DIRS=hbole hbziparch hbodbc hbtpathy hbtip hbw32 xhb
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_vc.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
set _HB_DIRS=hbclipsm hbw32ddr
if not "%APOLLO_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbapollo
@@ -24,7 +41,14 @@ if not "%GD_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbgd
if not "%MYSQL_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbmysql
if not "%PGSQL_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbpgsql
if not "%ADS_DIR%" == "" set _HB_DIRS=%_HB_DIRS% hbrddads
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c make_vc.bat %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
for %%n in ( %_HB_DIRS% ) do %COMSPEC% /c %__BATWORKER__% %%n %1 %2 %3 %4 %5 %6 %7 %8 %9
rem *******************************************************
rem Cleaning ...
rem *******************************************************
del %__BATWORKER__% > nul
set HB_SHOW_ERRORS=
set _HB_DIRS=
set __BATWORKER__=
set HB_SHOW_ERRORS=