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 |
|
Martin v. Löwis | 6807120 | 2008-06-14 11:50:59 +0000 | [diff] [blame] | 7 | if not exist tcltk\bin\tcl85g.dll (
|
Martin v. Löwis | 329d738 | 2008-06-12 19:51:59 +0000 | [diff] [blame] | 8 | @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
|
Martin v. Löwis | 7630731 | 2008-06-12 18:52:00 +0000 | [diff] [blame] | 9 | cd tcl-8.5.2.1\win
|
Martin v. Löwis | 329d738 | 2008-06-12 19:51:59 +0000 | [diff] [blame] | 10 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all
|
| 11 | nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install
|
Trent Nelson | 4f4738f | 2008-03-19 09:23:08 +0000 | [diff] [blame] | 12 | cd ..\..
|
Martin v. Löwis | f6f7925 | 2006-03-13 13:48:05 +0000 | [diff] [blame] | 13 | )
|
Martin v. Löwis | a0f4549 | 2006-03-21 12:08:39 +0000 | [diff] [blame] | 14 |
|
Martin v. Löwis | 6807120 | 2008-06-14 11:50:59 +0000 | [diff] [blame] | 15 | if not exist tcltk\bin\tk85g.dll (
|
Martin v. Löwis | 7630731 | 2008-06-12 18:52:00 +0000 | [diff] [blame] | 16 | cd tk-8.5.2.0\win
|
Amaury Forgeot d'Arc | 8c3bc86 | 2008-06-14 09:44:41 +0000 | [diff] [blame] | 17 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean
|
| 18 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all
|
| 19 | nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install
|
Trent Nelson | 4f4738f | 2008-03-19 09:23:08 +0000 | [diff] [blame] | 20 | cd ..\..
|
Martin v. Löwis | 76f1c1f | 2008-01-01 23:00:48 +0000 | [diff] [blame] | 21 | )
|