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.
This commit is contained in:
Viktor Szakats
2008-10-23 10:24:49 +00:00
parent 8ef12af6d4
commit 7ce7a6d888
2 changed files with 9 additions and 0 deletions

View File

@@ -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 '@'.

View File

@@ -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