Martin v. Löwis | 14c1cf8 | 2006-03-13 10:52:04 +0000 | [diff] [blame] | 1 | @rem Fetches (and builds if necessary) external dependencies
|
| 2 |
|
| 3 | @rem Assume we start inside the Python source directory
|
Trent Nelson | 4f4738f | 2008-03-19 09:23:08 +0000 | [diff] [blame^] | 4 | call "Tools\buildbot\external-common.bat"
|
| 5 | call "%VS90COMNTOOLS%\vsvars32.bat"
|
Martin v. Löwis | 14c1cf8 | 2006-03-13 10:52:04 +0000 | [diff] [blame] | 6 |
|
Trent Nelson | 4f4738f | 2008-03-19 09:23:08 +0000 | [diff] [blame^] | 7 | if 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öwis | f6f7925 | 2006-03-13 13:48:05 +0000 | [diff] [blame] | 11 | )
|
Martin v. Löwis | a0f4549 | 2006-03-21 12:08:39 +0000 | [diff] [blame] | 12 |
|
Trent Nelson | 4f4738f | 2008-03-19 09:23:08 +0000 | [diff] [blame^] | 13 | if 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öwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 17 | )
|