Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 1 | @rem Fetches (and builds if necessary) external dependencies |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 2 | |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 3 | @rem Assume we start inside the Python source directory |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 4 | call "Tools\buildbot\external-common.bat" |
Trent Nelson | f16444e | 2008-03-20 01:18:35 +0000 | [diff] [blame^] | 5 | call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64 |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 6 | |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 7 | if not exist tcltk64\bin\tcl84g.dll ( |
| 8 | cd tcl-8.4.18.2\win |
Trent Nelson | f16444e | 2008-03-20 01:18:35 +0000 | [diff] [blame^] | 9 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all install |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 10 | cd ..\.. |
Christian Heimes | dd15f6c | 2008-03-16 00:07:10 +0000 | [diff] [blame] | 11 | ) |
Guido van Rossum | cd16bf6 | 2007-06-13 18:07:49 +0000 | [diff] [blame] | 12 | |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 13 | if not exist tcltk64\bin\tk84g.dll ( |
| 14 | cd tk-8.4.18.1\win |
Trent Nelson | f16444e | 2008-03-20 01:18:35 +0000 | [diff] [blame^] | 15 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.4.18.2 clean all install |
Christian Heimes | d5e2b6f | 2008-03-19 21:50:51 +0000 | [diff] [blame] | 16 | cd ..\.. |
Christian Heimes | 454f37b | 2008-01-10 00:10:02 +0000 | [diff] [blame] | 17 | ) |