From 7ce7a6d8888fc9775ccdeaba39f7ab4516c67518 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Thu, 23 Oct 2008 10:24:49 +0000 Subject: [PATCH] 2008-10-23 12:23 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * contrib/mtpl_vc.mak ! Fixed MSVC not rebuilding .prg files after changing them. Current solution is to simply delete the intermediate .c file after C compiler returned. This also saves space, so even if it's a hack, it might be good to add this for other build paths. --- harbour/ChangeLog | 8 ++++++++ harbour/contrib/mtpl_vc.mak | 1 + 2 files changed, 9 insertions(+) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 7b55f5e8e2..8474fd5194 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,14 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-10-23 12:23 UTC+0200 Viktor Szakats (harbour.01 syenar hu) + * contrib/mtpl_vc.mak + ! Fixed MSVC not rebuilding .prg files after changing them. + Current solution is to simply delete the intermediate .c + file after C compiler returned. This also saves space, + so even if it's a hack, it might be good to add this + for other build paths. + 2008-10-23 12:17 UTC+0200 Viktor Szakats (harbour.01 syenar hu) * make_vc.mak ! Changed '!' (non-working) echo supression char to '@'. diff --git a/harbour/contrib/mtpl_vc.mak b/harbour/contrib/mtpl_vc.mak index f33c6b8fac..655f0f1594 100644 --- a/harbour/contrib/mtpl_vc.mak +++ b/harbour/contrib/mtpl_vc.mak @@ -155,6 +155,7 @@ $(OBJ_DIR): {.}.prg{$(OBJ_DIR)}$(OBJEXT): $(HB) $(HARBOURFLAGS) -o$(OBJ_DIR)\ $< $(CC) $(CLIBFLAGS) -Fo$(OBJ_DIR)\ $(OBJ_DIR)\$(*B).c + @if exist $(OBJ_DIR)\$(*B).c $(DEL) $(OBJ_DIR)\$(*B).c > nul #********************************************************** !include common.mak