diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-06 17:09:22 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2024-01-06 17:09:22 (GMT) |
commit | ddd197206f59d4781297dde800837399374acf56 (patch) | |
tree | a9b52715c50300ab375fe588cfdc9a5c0303cbd1 /win/makefile.vc | |
parent | f6b6341a322e3aa39844de956d23e0c3b4f038b3 (diff) | |
download | tcl-ddd197206f59d4781297dde800837399374acf56.zip tcl-ddd197206f59d4781297dde800837399374acf56.tar.gz tcl-ddd197206f59d4781297dde800837399374acf56.tar.bz2 |
Correction in documentation embedded in rules.vc
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index f1da0f9..ef67c66 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -17,11 +17,11 @@ # nmake [-nologo] -f makefile.vc [TARGET|MACRODEF [TARGET|MACRODEF] [...]]
#
# For MACRODEF, see TIP 477 (https://core.tcl-lang.org/tips/doc/main/tip/477.md)
-# or examine Sections 6-8 in rules.vc.
+# or examine Sections 7-9 in rules.vc.
#
-# Possible values of TARGET are:
+# Possible values for TARGET are:
# release -- Builds the core, the shell and the dlls. (default)
-# dlls -- Just builds the windows extensions
+# dlls -- Just builds the windows extensions.
# shell -- Just builds the shell and the core.
# core -- Only builds the core [tclXX.(dll|lib)].
# all -- Builds everything.
@@ -47,9 +47,9 @@ # Visual Studio/Windows SDK for the appropriate target architecture.
#
# NOTE: For older (Visual C++ 6 or the 2003 SDK), to use the Platform
-# SDK (not expressly needed), run setenv.bat after
-# vcvars32.bat according to the instructions for it. This can also
-# turn on the 64-bit compiler, if your SDK has it.
+# SDK (not expressly needed), run setenv.bat after vcvars32.bat
+# according to the instructions for it. This can also turn on the
+# 64-bit compiler, if your SDK has it.
#
# Basic macros and options usable on the commandline (see rules.vc for more info):
# OPTS=msvcrt,nothreads,pdbs,profile,static,staticpkg,symbols,thrdalloc,time64bit,unchecked,none
@@ -133,10 +133,10 @@ PROJECT = tcl # rules.vc file will set up "all" as the target.
DEFAULT_BUILD_TARGET = release
-# We want to use our own resource file, not the standard template one.
+# We have a custom resource file
RCFILE = tcl.rc
-# The rules.vc file does most of the hard work in terms of defining
+# The rules.vc file does much of the hard work in terms of defining
# the build configuration, macros, output directories etc.
!include "rules.vc"
|