d6b18ae78f8b129b5a2c54631ff74d56f403d89f
[profile/ivi/python.git] / Tools / buildbot / external.bat
1 @rem Fetches (and builds if necessary) external dependencies\r
2 \r
3 @rem Assume we start inside the Python source directory\r
4 call "Tools\buildbot\external-common.bat"\r
5 call "%VS90COMNTOOLS%\vsvars32.bat"\r
6 \r
7 if not exist tcltk\bin\tcl85g.dll (\r
8     @rem all and install need to be separate invocations, otherwise nmakehlp is not found on install\r
9     cd tcl-8.5.2.1\win\r
10     nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 DEBUG=1 INSTALLDIR=..\..\tcltk clean all \r
11     nmake -f makefile.vc DEBUG=1 INSTALLDIR=..\..\tcltk install\r
12     cd ..\..\r
13 )\r
14 \r
15 if not exist tcltk\bin\tk85g.dll (\r
16     cd tk-8.5.2.0\win    \r
17     nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 clean\r
18     nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 all\r
19     nmake -f makefile.vc COMPILERFLAGS=-DWINVER=0x0500 OPTS=noxp DEBUG=1 INSTALLDIR=..\..\tcltk TCLDIR=..\..\tcl-8.5.2.1 install\r
20     cd ..\..\r
21 )\r