diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-21 16:22:34 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-21 16:22:34 (GMT) |
commit | cca6daf1b032534c3fa810c219cdc076941c0371 (patch) | |
tree | a4ed7b5c6b444a408a0ed09c741baf96da690a3f /win/makefile.vc | |
parent | 1a6dce0b4a15ceb1b91d71114f76caaa1b5af28a (diff) | |
parent | fd3c38f894a7cce3d725b60f8d5cead803d9ff6c (diff) | |
download | tcl-cca6daf1b032534c3fa810c219cdc076941c0371.zip tcl-cca6daf1b032534c3fa810c219cdc076941c0371.tar.gz tcl-cca6daf1b032534c3fa810c219cdc076941c0371.tar.bz2 |
Modify makefile.vc for Windows 8.1 support
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index b76a939..56bc4b7 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -985,6 +985,12 @@ $(TMP_DIR)\tclTomMathStubLib.obj: $(GENERICDIR)\tclTomMathStubLib.c $(TMP_DIR)\tclOOStubLib.obj: $(GENERICDIR)\tclOOStubLib.c $(cc32) $(STUB_CFLAGS) -Zl -DSTATIC_BUILD $(TCL_INCLUDES) -Fo$@ $? +$(TMP_DIR)\tclsh.exe.manifest: $(WINDIR)\tclsh.exe.manifest.in + @nmakehlp -s << $** >$@ +@MACHINE@ $(MACHINE:IX86=X86) +@TCL_WIN_VERSION@ $(TCL_DOTVERSION).0.0 +<< + #--------------------------------------------------------------------- # Generate the source dependencies. Having dependency rules will # improve incremental build accuracy without having to resort to a @@ -1051,12 +1057,14 @@ $< << {$(WINDIR)}.rc{$(TMP_DIR)}.res: - $(rc32) -fo $@ -r -i "$(GENERICDIR)" \ + $(rc32) -fo $@ -r -i "$(GENERICDIR)" -i "$(TMP_DIR)" \ -d DEBUG=$(DEBUG) -d UNCHECKED=$(UNCHECKED) \ -d TCL_THREADS=$(TCL_THREADS) \ -d STATIC_BUILD=$(STATIC_BUILD) \ $< +$(TMP_DIR)\tclsh.res: $(TMP_DIR)\tclsh.exe.manifest + .SUFFIXES: .SUFFIXES:.c .rc |