blob: 411360560011a43d39d18223127f4e1fec77d6a3 [file] [log] [blame]
Martin v. Löwis14c1cf82006-03-13 10:52:04 +00001@rem Fetches (and builds if necessary) external dependencies
2
3@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"
Martin v. Löwis14c1cf82006-03-13 10:52:04 +00006
Christian Heimesd5e2b6f2008-03-19 21:50:51 +00007if not exist tcltk\bin\tcl84g.dll (
8 cd tcl-8.4.18.2\win
9 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all install
10 cd ..\..
Martin v. Löwisf6f79252006-03-13 13:48:05 +000011)
Thomas Wouters49fd7fa2006-04-21 10:40:58 +000012
Christian Heimesd5e2b6f2008-03-19 21:50:51 +000013if not exist tcltk\bin\tk84g.dll (
14 cd tk-8.4.18.1\win
15 nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.4.18.2 clean all install
16 cd ..\..
Christian Heimes57dddfb2008-01-02 18:30:52 +000017)