blob: c580a149705fc240ad39043953f9d2453edc28a2 [file] [log] [blame]
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00001@rem Fetches (and builds if necessary) external dependencies
2
3@rem Assume we start inside the Python source directory
4call "Tools\buildbot\external-common.bat"
Brian Curtin401f9f32012-05-13 11:19:23 -05005call "%VS100COMNTOOLS%\vsvars32.bat"
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00006
Martin v. Löwis8d0d3692013-11-23 23:05:27 +01007if not exist tcltk\bin\tcl86tg.dll (
Antoine Pitrou7f1e1742011-02-25 14:19:48 +00008 @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
Martin v. Löwis8d0d3692013-11-23 23:05:27 +01009 cd tcl-8.6.1.0\win
Martin v. Löwis3f50bf62013-01-25 14:06:18 +010010 nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk clean all
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000011 nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install
12 cd ..\..
13)
14
Martin v. Löwis8d0d3692013-11-23 23:05:27 +010015if not exist tcltk\bin\tk86tg.dll (
16 cd tk-8.6.1.0\win
17 nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.6.1.0 clean
18 nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.6.1.0 all
19 nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.6.1.0 install
Antoine Pitrou7f1e1742011-02-25 14:19:48 +000020 cd ..\..
21)