From 77d037c47c574f57802ba430032959a3b95fabe7 Mon Sep 17 00:00:00 2001 From: Paul Tucker Date: Sat, 18 Mar 2000 17:47:48 +0000 Subject: [PATCH] 20000318-12:45 est --- harbour/ChangeLog | 6 ++++++ harbour/make_vc.bat | 2 ++ 2 files changed, 8 insertions(+) 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