diff options
author | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-11 06:22:32 (GMT) |
---|---|---|
committer | apnadkarni <apnmbx-wits@yahoo.com> | 2017-12-11 06:22:32 (GMT) |
commit | 3c10e2ea6a07b66acc12dedd70921a01dd9429a3 (patch) | |
tree | 46de96c01c11ec14558175f3b5d20ff9f9f905c1 /win | |
parent | c2ce61d2afae932bb7da713a39c205aa82e65f47 (diff) | |
download | tk-3c10e2ea6a07b66acc12dedd70921a01dd9429a3.zip tk-3c10e2ea6a07b66acc12dedd70921a01dd9429a3.tar.gz tk-3c10e2ea6a07b66acc12dedd70921a01dd9429a3.tar.bz2 |
Fix static build of wish
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 $**
|