diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-29 11:48:02 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-09-29 11:48:02 (GMT) |
commit | e6cc2ac919c4d65864139092c244734683804139 (patch) | |
tree | 50cefd6092793945e9b65ddd00764b6d8259941d | |
parent | 2e74202663ab2e8d3a0c2956596d5f15ae96b8bc (diff) | |
download | tk-e6cc2ac919c4d65864139092c244734683804139.zip tk-e6cc2ac919c4d65864139092c244734683804139.tar.gz tk-e6cc2ac919c4d65864139092c244734683804139.tar.bz2 |
Fix build of ttkStubLib.o when using makefile.vc. (problem reported by fvogel, actually noticed on trunk but was a longstanding problem). configure/make build system was correct
-rw-r--r-- | win/makefile.vc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index 38ec132..c4a508b 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -560,6 +560,8 @@ $(TMP_DIR)\tkMain2.obj: $(GENERICDIR)\tkMain.c $(TMP_DIR)\tkStubLib.obj : $(GENERICDIR)\tkStubLib.c
$(cc32) $(stubscflags) -Fo$@ $?
+$(TMP_DIR)\ttkStubLib.obj : $(GENERICDIR)\ttkStubLib.c
+ $(cc32) $(stubscflags) -Fo$@ $?
$(TMP_DIR)\wish.exe.manifest: $(WIN_DIR)\wish.exe.manifest.in
@nmakehlp -s << $** >$@
|