See changelog

This commit is contained in:
Eddie Runia
1999-07-24 22:33:37 +00:00
parent 24c4cb2e47
commit 201317f141
6 changed files with 31 additions and 1 deletions

View File

@@ -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 <bruno@issnet.net>
+ include/set.h
Added two prototypes

View File

@@ -1,3 +1,3 @@
@echo off
tmake -fhbodbc.b32
make -fhbodbc.b32
implib .\libs\b32\odbc32.lib source\odbc\odbc32.def

View File

@@ -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 ..\..

3
harbour/buildrdd.bat Normal file
View File

@@ -0,0 +1,3 @@
@echo off
bin\harbour source\rdd\rddsys /n /osource\rdd /iinclude
make -frdd.b32

16
harbour/rdd.b32 Normal file
View File

@@ -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 -+$@,,

View File

@@ -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