blob: fdd695af63c8da1d0ec6a007201f709e515cb1cc [file] [log] [blame]
Guido van Rossumcd16bf62007-06-13 18:07:49 +00001@rem Fetches (and builds if necessary) external dependencies
Guido van Rossumcd16bf62007-06-13 18:07:49 +00002
Guido van Rossumcd16bf62007-06-13 18:07:49 +00003@rem Assume we start inside the Python source directory
Christian Heimesd5e2b6f2008-03-19 21:50:51 +00004call "Tools\buildbot\external-common.bat"
Trent Nelsonf16444e2008-03-20 01:18:35 +00005call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
Guido van Rossumcd16bf62007-06-13 18:07:49 +00006
Christian Heimesd5e2b6f2008-03-19 21:50:51 +00007if not exist tcltk64\bin\tcl84g.dll (
8 cd tcl-8.4.18.2\win
Trent Nelsonf16444e2008-03-20 01:18:35 +00009 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all install
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000010 cd ..\..
Christian Heimesdd15f6c2008-03-16 00:07:10 +000011)
Guido van Rossumcd16bf62007-06-13 18:07:49 +000012
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000013if not exist tcltk64\bin\tk84g.dll (
14 cd tk-8.4.18.1\win
Trent Nelsonf16444e2008-03-20 01:18:35 +000015 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.4.18.2 clean all install
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000016 cd ..\..
Christian Heimes454f37b2008-01-10 00:10:02 +000017)