diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c828918254..acefa30e28 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2002-12-01 13:30 UTC+0100 Foo Bar */ +2007-11-19 15:25 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + + contrib/examples/dbu + + contrib/examples/dbu/readme.txt + + contrib/examples/dbu/bld_b32.bat + + contrib/examples/dbu/Makefile + + Added make files for original CA-Cl*pper DBU. + One will need to original sources to compile. + 2007-11-18 23:11 UTC+0100 Viktor Szakats (harbour.01 syenar.hu) + contrib/mtpl_b32.bat + contrib/mtpl_vc.bat diff --git a/harbour/contrib/examples/dbu/Makefile b/harbour/contrib/examples/dbu/Makefile new file mode 100644 index 0000000000..a987553899 --- /dev/null +++ b/harbour/contrib/examples/dbu/Makefile @@ -0,0 +1,36 @@ +# +# $Id$ +# + +ROOT = ../../../ + +PRG_SOURCES=\ + DBU.PRG \ + DBUCOPY.PRG \ + DBUEDIT.PRG \ + DBUHELP.PRG \ + DBUINDX.PRG \ + DBUNET.PRG \ + DBUSTRU.PRG \ + DBUUTIL.PRG \ + DBUVIEW.PRG \ + +PRG_MAIN=DBU.PRG + +LIBS=\ + debug \ + vm \ + rtl \ + lang \ + rdd \ + rtl \ + vm \ + macro \ + pp \ + dbfntx \ + dbfcdx \ + dbffpt \ + hbsix \ + common \ + +include $(TOP)$(ROOT)config/bin.cf diff --git a/harbour/contrib/examples/dbu/bld_b32.bat b/harbour/contrib/examples/dbu/bld_b32.bat new file mode 100644 index 0000000000..18710ce05c --- /dev/null +++ b/harbour/contrib/examples/dbu/bld_b32.bat @@ -0,0 +1,43 @@ +@echo off +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\ + +echo -O2 -I..\..\..\include -L..\..\..\lib > build.tmp +echo -edbu.exe >> build.tmp +echo dbu.c >> build.tmp +echo dbucopy.c >> build.tmp +echo dbuedit.c >> build.tmp +echo dbuhelp.c >> build.tmp +echo dbuindx.c >> build.tmp +echo dbunet.c >> build.tmp +echo dbustru.c >> build.tmp +echo dbuutil.c >> build.tmp +echo dbuview.c >> build.tmp +echo debug.lib >> build.tmp +echo vm.lib >> build.tmp +echo rtl.lib >> build.tmp +echo gtwin.lib >> build.tmp +echo lang.lib >> build.tmp +echo rdd.lib >> build.tmp +echo macro.lib >> build.tmp +echo pp.lib >> build.tmp +echo dbfntx.lib >> build.tmp +echo dbfcdx.lib >> build.tmp +echo dbffpt.lib >> build.tmp +echo hbsix.lib >> build.tmp +echo common.lib >> build.tmp +bcc32 @build.tmp +del build.tmp + +dbu diff --git a/harbour/contrib/examples/dbu/readme.txt b/harbour/contrib/examples/dbu/readme.txt new file mode 100644 index 0000000000..feede55975 --- /dev/null +++ b/harbour/contrib/examples/dbu/readme.txt @@ -0,0 +1,6 @@ +/* + * $Id$ + */ + +Copy the full content of /SOURCE/DBU from your original +CA-Cl*pper installation, and run the batch file to compile.