diff --git a/harbour/ChangeLog b/harbour/ChangeLog index be2668998c..a4cc931190 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,12 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-09 10:11 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * bin/bld.bat + * bin/bld_os2.cmd + + CLEANUP section now tries to clean object files and + Borland .tds files, too. + 2008-10-09 09:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * include/hbextern.ch + Added missing HB_DISABLEWAITLOCKS(). diff --git a/harbour/bin/bld.bat b/harbour/bin/bld.bat index 2d9a3d66f3..e09148f92e 100644 --- a/harbour/bin/bld.bat +++ b/harbour/bin/bld.bat @@ -214,5 +214,9 @@ if not "%HB_ARCHITECTURE%" == "w32" goto A_OS2 :CLEANUP del %1.c + if exist %1.o del %1.o + if exist %1.obj del %1.obj + rem Borland stuff + if exist %1.tds del %1.tds :END diff --git a/harbour/bin/bld_os2.cmd b/harbour/bin/bld_os2.cmd index ea5dff976d..074777777d 100644 --- a/harbour/bin/bld_os2.cmd +++ b/harbour/bin/bld_os2.cmd @@ -78,5 +78,6 @@ if not "%HB_MT%" == "MT" set _HBVM_LIB=hbvm :CLEANUP del %1.c + if exist %1.o del %1.o :END