From 7e96e72218e40a2fc3c49294d5156eb0e05b8e94 Mon Sep 17 00:00:00 2001 From: pixel Date: Thu, 22 Jan 2004 22:44:43 +0000 Subject: Having a cute patching system now --- MSVC/Tools/Tools.vcproj | 12 ++++++++++++ MSVC/Tools/master.mak | 4 +++- 2 files changed, 15 insertions(+), 1 deletion(-) (limited to 'MSVC') diff --git a/MSVC/Tools/Tools.vcproj b/MSVC/Tools/Tools.vcproj index b2aef74..43bb39e 100644 --- a/MSVC/Tools/Tools.vcproj +++ b/MSVC/Tools/Tools.vcproj @@ -46,6 +46,15 @@ + + + + + + @@ -165,6 +174,9 @@ RelativePath="Links.htm" DeploymentContent="TRUE"> + + diff --git a/MSVC/Tools/master.mak b/MSVC/Tools/master.mak index 4243a99..511c6c4 100644 --- a/MSVC/Tools/master.mak +++ b/MSVC/Tools/master.mak @@ -150,7 +150,9 @@ _RMDIR=deltree /y #default compile and link for c++ files building an exe #note: name.obj and name.exe must match .obj.exe: - $(_LINK) $(_LFLAGS) $(_LIBS) $** + if not exist $*.res $(_LINK) /SUBSYSTEM:CONSOLE $(_LFLAGS) $(_LIBS) $*.obj + if exist $*.res $(_LINK) /SUBSYSTEM:CONSOLE $(_LFLAGS) $(_LIBS) $*.obj $*.res + if exist $*.paq copy /b $*.exe+$*.paq $*.exe #default compile and link for c++ files building a dll .obj.dll: -- cgit v1.2.3