2011-02-25 10:19:48 -04:00
|
|
|
@rem Fetches (and builds if necessary) external dependencies
|
|
|
|
|
|
|
|
@rem Assume we start inside the Python source directory
|
|
|
|
call "Tools\buildbot\external-common.bat"
|
2012-05-13 13:19:23 -03:00
|
|
|
call "%VS100COMNTOOLS%\vsvars32.bat"
|
2011-02-25 10:19:48 -04:00
|
|
|
|
|
|
|
if not exist tcltk\bin\tcl85g.dll (
|
|
|
|
@rem all and install need to be separate invocations, otherwise nmakehlp is not found on install
|
2012-05-13 13:19:23 -03:00
|
|
|
cd tcl-8.5.11.0\win
|
2013-01-25 09:06:18 -04:00
|
|
|
nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk clean all
|
2011-02-25 10:19:48 -04:00
|
|
|
nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install
|
|
|
|
cd ..\..
|
|
|
|
)
|
|
|
|
|
|
|
|
if not exist tcltk\bin\tk85g.dll (
|
2012-05-13 13:19:23 -03:00
|
|
|
cd tk-8.5.11.0\win
|
2013-01-25 09:06:18 -04:00
|
|
|
nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.11.0 clean
|
|
|
|
nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.11.0 all
|
|
|
|
nmake -f makefile.vc OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.11.0 install
|
2011-02-25 10:19:48 -04:00
|
|
|
cd ..\..
|
|
|
|
)
|