1 @rem Fetches (and builds if necessary) external dependencies
\r
3 @rem Assume we start inside the Python source directory
\r
4 call "Tools\buildbot\external-common.bat"
\r
5 call "%VS90COMNTOOLS%\vsvars32.bat"
\r
7 if not exist tcltk\bin\tcl85g.dll (
\r
8 @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
\r
10 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all
\r
11 nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install
\r
15 if not exist tcltk\bin\tk85g.dll (
\r
17 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean
\r
18 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all
\r
19 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install
\r