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
Trent Nelson4f4738f2008-03-19 09:23:08 +00004call "Tools\buildbot\external-common.bat"
5call "%VS90COMNTOOLS%\vsvars32.bat"
Martin v. Löwis14c1cf82006-03-13 10:52:04 +00006
Trent Nelson4f4738f2008-03-19 09:23:08 +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)
Martin v. Löwisa0f45492006-03-21 12:08:39 +000012
Trent Nelson4f4738f2008-03-19 09:23:08 +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 ..\..
Martin v. Löwis76f1c1f2008-01-01 23:00:48 +000017)