blob: 8fd452a011aa8e40653187c769b42572fbe4ea2a [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"
5call "%VS90COMNTOOLS%\vsvars32.bat"
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
9 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk64 clean all install
10 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
15 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.4.18.2 clean all install
16 cd ..\..
Christian Heimes454f37b2008-01-10 00:10:02 +000017)