From 2f0eb9c7a1a804ed37642e16e15f6a0a8bd78541 Mon Sep 17 00:00:00 2001 From: "David G. Holm" Date: Fri, 4 Jun 1999 00:05:35 +0000 Subject: [PATCH] See ChangeLog entry 19990603-19:00 EDT David G. Holm --- harbour/ChangeLog | 5 +++++ harbour/makefile.dos | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 3679de2f96..ceff87c6b0 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -1,3 +1,8 @@ +19990603-19:00 EDT David G. Holm + Thanks go to Ryszard Glab + * makefile.dos + - Added -r to two make lines for source/compiler + 19990604-00:25 CET Eddie Runia * source/rtl/classes.c With _GetClassName(); optimized; more comments; more clean-up diff --git a/harbour/makefile.dos b/harbour/makefile.dos index 5b26ce903e..4e86a2797d 100644 --- a/harbour/makefile.dos +++ b/harbour/makefile.dos @@ -6,7 +6,7 @@ all: compiler vm rtl tools compiler: - make -w --directory=source/compiler -f makefile.dos + make -r -w --directory=source/compiler -f makefile.dos vm: make -w --directory=source/vm -f makefile.dos @@ -22,7 +22,7 @@ tools: # make -w --directory=tests/working -f makefile.dos clean: - make -w --directory=source/compiler -f makefile.dos clean + make -r -w --directory=source/compiler -f makefile.dos clean make -w --directory=source/vm -f makefile.dos clean make -w --directory=source/rtl -f makefile.dos clean make -w --directory=source/tools -f makefile.dos clean