2007-11-19 20:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* contrib/examples/dbu/bld_b32.bat
     * Now the non-GNU build batch file will look for 
       DBU source in the original CA-Cl*pper installation, 
       if specified (using 'set CLIPPER_DIR=C:\CLIPPER5\').
This commit is contained in:
Viktor Szakats
2007-11-19 19:39:42 +00:00
parent 6b78309e4e
commit 63df3ba82e
2 changed files with 36 additions and 9 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 13:30 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2007-11-19 20:35 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/examples/dbu/bld_b32.bat
* Now the non-GNU build batch file will look for
DBU source in the original CA-Cl*pper installation,
if specified (using 'set CLIPPER_DIR=C:\CLIPPER5\').
2007-11-19 20:21 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
+ contrib/rdd_ads/test
+ contrib/rdd_ads/test/testmg.prg

View File

@@ -3,15 +3,34 @@ rem
rem $Id$
rem
..\..\..\bin\harbour /n dbu.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbucopy.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbuedit.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbuhelp.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbuindx.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbunet.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbustru.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbuutil.prg /i..\..\..\include\
..\..\..\bin\harbour /n dbuview.prg /i..\..\..\include\
set DBU_DIR=%CLIPPER_DIR%\SOURCE\DBU
if exist "%DBU_DIR%\DBU.PRG" goto BUILD
set DBU_DIR=.
if exist "%DBU_DIR%\DBU.PRG" goto BUILD
:HELP
echo ---------------------------------------------------------------
echo IMPORTANT: You'll either need to copy the original CA-Cl*pper
echo DBU sources to this directory, or set the location of
echo your original CA-Cl*pper installation (with DBU sources
echo in SOURCE\DBU):
echo set CLIPPER_DIR=C:\CLIPPER5
echo ---------------------------------------------------------------
goto EXIT
:BUILD
..\..\..\bin\harbour /n %DBU_DIR%\DBU.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUCOPY.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUEDIT.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUHELP.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUINDX.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUNET.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUSTRU.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUUTIL.PRG /i..\..\..\include\
..\..\..\bin\harbour /n %DBU_DIR%\DBUVIEW.PRG /i..\..\..\include\
echo -O2 -I..\..\..\include -L..\..\..\lib > build.tmp
echo -edbu.exe >> build.tmp
@@ -41,3 +60,5 @@ bcc32 @build.tmp
del build.tmp
dbu
:EXIT