diff options
Diffstat (limited to 'win')
-rw-r--r-- | win/makefile.vc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 832b705..04c9757 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -412,9 +412,14 @@ dbgshell: setup $(WISH) windbg $(WISH)
!if $(STATIC_BUILD)
+
$(TKLIB): $(TKOBJS)
$(LIBCMD) @<<
+$**
+<<
+
!else
+
$(TKLIB): $(TKOBJS)
$(DLLCMD) @<<
$**
@@ -423,7 +428,8 @@ $** @if exist $*.exp del $*.exp
$(TKIMPLIB): $(TKLIB)
-!endif
+
+!endif # $(STATIC_BUILD)
$(TKSTUBLIB): $(TKSTUBOBJS)
$(LIBCMD) -nodefaultlib $**
|