diff options
author | pixel <pixel> | 2003-10-09 01:50:46 +0000 |
---|---|---|
committer | pixel <pixel> | 2003-10-09 01:50:46 +0000 |
commit | 000f0a624a68f67a39fee42ba8f7bf913b1b357b (patch) | |
tree | 2b077862da1fb8804f78e71fd03575463a21c31c | |
parent | a0b05712a66a2de24ba0e0c540a15a207b12a876 (diff) |
Gestion des ressources
-rw-r--r-- | MSVC/Tools/master.mak | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MSVC/Tools/master.mak b/MSVC/Tools/master.mak index a38c264..d855ee8 100644 --- a/MSVC/Tools/master.mak +++ b/MSVC/Tools/master.mak @@ -134,7 +134,8 @@ _RMDIR=deltree /y .cpp.exe: if not exist $(_OUTDIR) md $(_OUTDIR) $(_CL) $(_CDFLAGS) $*.cpp - $(_LINK) $(_LFLAGS) $(_LIBS) $*.obj + if not exist $*.res $(_LINK) $(_LFLAGS) $(_LIBS) $*.obj + if exist $*.res $(_LINK) $(_LFLAGS) $(_LIBS) $*.obj $*.res .lex.c: if not exist $(_OUTDIR) md $(_OUTDIR) |