168
169
170
171
172
173
174
175
176
177
178
179
180
181
|
# The PROJECT macro is used by rules.vc for generating appropriate
# macros and rules.
PROJECT = tcl
# Default target to build if no target is specified. If unspecified, the
# rules.vc file will set up "all" as the target.
DEFAULT_BUILD_TARGET = release
# The rules.vc file does most of the hard work in terms of defining
# the build configuration, macros, output directories etc.
!include "rules.vc"
# Tcl version info based on macros set up by rules.vc
DOTVERSION = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
|
>
>
>
|
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
|
# The PROJECT macro is used by rules.vc for generating appropriate
# macros and rules.
PROJECT = tcl
# Default target to build if no target is specified. If unspecified, the
# 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.
RCFILE = tcl.rc
# The rules.vc file does most of the hard work in terms of defining
# the build configuration, macros, output directories etc.
!include "rules.vc"
# Tcl version info based on macros set up by rules.vc
DOTVERSION = $(TCL_MAJOR_VERSION).$(TCL_MINOR_VERSION)
|