blob: a44c6623c04f6fa5eb55da616527cbfa900abf3d [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
Martin v. Löwis3f50bf62013-01-25 14:06:18 +01009 nmake -f makefile.vc DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all
10 nmake -f makefile.vc DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000011 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
Martin v. Löwis3f50bf62013-01-25 14:06:18 +010016 nmake -f makefile.vc OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.11.0 clean
17 nmake -f makefile.vc OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.11.0 all
18 nmake -f makefile.vc 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