diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 29ff44a41f..595ef4afd0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,11 @@ +19990725-00:20 CET Felipe Coury + * tests/working/bld32exe.bat + changed for RDD + + buildrdd.bat; rdd.b32 + makefiles for RDD + * build32.bat + changed for RDD + 19990724-21:02 GMT+1 Bruno Cantero + include/set.h Added two prototypes diff --git a/harbour/bldodbc.bat b/harbour/bldodbc.bat index 0147ee9a42..bde70f0d86 100644 --- a/harbour/bldodbc.bat +++ b/harbour/bldodbc.bat @@ -1,3 +1,3 @@ @echo off -tmake -fhbodbc.b32 +make -fhbodbc.b32 implib .\libs\b32\odbc32.lib source\odbc\odbc32.def diff --git a/harbour/build32.bat b/harbour/build32.bat index 3acede83b2..dab0c570d6 100644 --- a/harbour/build32.bat +++ b/harbour/build32.bat @@ -5,6 +5,7 @@ make -fmakefile.b32 >> build32.err make -fterminal.b32 >> build32.err call bldgt32.bat >> build32.err call bldhbpp.bat >> build32.err +call buildrdd.bat >> build32.err cd tests\working call bld32exe.bat ..\..\source\runner\runner runner >> build32.err cd ..\.. diff --git a/harbour/buildrdd.bat b/harbour/buildrdd.bat new file mode 100644 index 0000000000..10093fd15b --- /dev/null +++ b/harbour/buildrdd.bat @@ -0,0 +1,3 @@ +@echo off +bin\harbour source\rdd\rddsys /n /osource\rdd /iinclude +make -frdd.b32 diff --git a/harbour/rdd.b32 b/harbour/rdd.b32 new file mode 100644 index 0000000000..f904976665 --- /dev/null +++ b/harbour/rdd.b32 @@ -0,0 +1,16 @@ +# makefile for Borland C/C++ 32 bits +# ODBC Harbor Library and Import Library makefile + +.path.c = source\rdd +.path.h = source\rdd;include +.path.lib = libs\b32 +.path.obj = obj + +libs\b32\rdd.lib : rddsys.obj dbcmd.obj + +dbcmd.obj : dbcmd.c +rddsys.obj : rddsys.c + +.c.obj : + bcc32 -c -O2 -I.\include;.\source\hbpp -o$@ $< + tlib .\libs\b32\rdd.lib -+$@,, diff --git a/harbour/tests/working/bld32exe.bat b/harbour/tests/working/bld32exe.bat index 41ba2a5f09..8240e76444 100644 --- a/harbour/tests/working/bld32exe.bat +++ b/harbour/tests/working/bld32exe.bat @@ -6,6 +6,7 @@ IF A%2 == A GOTO :NOOUTPUT echo -O2 -e%2.exe -I..\..\include ..\..\source\vm\hvm.c %1.c > b32.bc echo ..\..\libs\b32\harbour.lib ..\..\libs\b32\terminal.lib >> b32.bc echo ..\..\libs\b32\hbgt.lib ..\..\libs\b32\hbpp.lib >> b32.bc +echo ..\..\libs\b32\rdd.lib >> b32.bc bcc32 -v @b32.bc del b32.bc GOTO :END @@ -14,6 +15,7 @@ GOTO :END echo -O2 -e%1.exe -I..\..\include ..\..\source\vm\hvm.c %1.c > b32.bc echo ..\..\libs\b32\harbour.lib ..\..\libs\b32\terminal.lib >> b32.bc echo ..\..\libs\b32\hbgt.lib ..\..\libs\b32\hbpp.lib >> b32.bc +echo ..\..\libs\b32\rdd.lib >> b32.bc bcc32 -v @b32.bc del b32.bc GOTO :END