diff --git a/harbour/ChangeLog b/harbour/ChangeLog index a2759fb796..81ee64c3d2 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,9 @@ +20000318-12:45 EST Paul Tucker + * contrib/rdd_ads/ads1.c + * added cast in strlen() + * make_vc.bat + * account for .dll's in copy/delete + 20000318-19:38 GMT+3 Alexander Kresin * include/hbapirdd.h * contrib/rdd_ads/ads.ch diff --git a/harbour/make_vc.bat b/harbour/make_vc.bat index 6e631e703f..89fecb6242 100644 --- a/harbour/make_vc.bat +++ b/harbour/make_vc.bat @@ -13,6 +13,7 @@ if "%1" == "CLEAN" goto CLEAN :BUILD_OK + if exist bin\vc\*.dll copy bin\vc\*.dll bin\*.* >nul copy bin\vc\*.exe bin\*.* > nul copy lib\vc\*.lib lib\*.* > nul goto EXIT @@ -25,6 +26,7 @@ if "%1" == "CLEAN" goto CLEAN :CLEAN if exist bin\vc\*.exe del bin\vc\*.exe + if exist bin\vc\*.dll del bin\vc\*.dll if exist bin\vc\*.pdb del bin\vc\*.pdb if exist bin\vc\*.ilk del bin\vc\*.ilk if exist bin\vc\*.map del bin\vc\*.map