Martin v. Löwis | 945c632 | 2008-06-14 11:51:54 +0000 | [diff] [blame] | 1 | @rem Fetches (and builds if necessary) external dependencies
|
| 2 |
|
| 3 | @rem Assume we start inside the Python source directory
|
| 4 | call "Tools\buildbot\external-common.bat"
|
| 5 | call "%VS90COMNTOOLS%\..\..\VC\vcvarsall.bat" x86_amd64
|
| 6 |
|
| 7 | if not exist tcltk64\bin\tcl85g.dll (
|
| 8 | cd tcl-8.5.2.1\win
|
| 9 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 clean all
|
| 10 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 install
|
| 11 | cd ..\..
|
| 12 | )
|
| 13 |
|
| 14 | if not exist tcltk64\bin\tk85g.dll (
|
Amaury Forgeot d'Arc | d574633 | 2008-06-18 21:33:58 +0000 | [diff] [blame] | 15 | cd tk-8.5.2.0\win
|
Martin v. Löwis | 945c632 | 2008-06-14 11:51:54 +0000 | [diff] [blame] | 16 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.2.1 clean
|
| 17 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.2.1 all
|
| 18 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 MACHINE=AMD64 INSTALLDIR=..\..\tcltk64 TCLDIR=..\..\tcl-8.5.2.1 install
|
| 19 | cd ..\..
|
| 20 | )
|