blob: d2ff255247c43f9eff34ae9e9ce14bc578335d29 [file] [log] [blame]
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00001@rem Fetches (and builds if necessary) external dependencies
2
3@rem Assume we start inside the Python source directory
4call "Tools\buildbot\external-common.bat"
Brian Curtin401f9f32012-05-13 11:19:23 -05005call "%VS100COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00006
7if not exist tcltk64\bin\tcl85g.dll (
Stefan Krah16ad7a22012-06-23 22:18:19 +02008 cd tcl-8.5.11.0\win
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00009 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all
10 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install
11 cd ..\..
12)
13
14if not exist tcltk64\bin\tk85g.dll (
Stefan Krah16ad7a22012-06-23 22:18:19 +020015 cd tk-8.5.11.0\win
16 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.11.0 clean
17 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.11.0 all
18 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.11.0 install
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000019 cd ..\..
20)
21