Fixes (accepts patch) issue1339 - http://bugs.python.org/issue1339
[python.git] / PC / VS8.0 / build_tkinter.py
blobdefafe81537f4b75dc73fa5e204152e834067b16
1 """Script to compile the dependencies of _tkinter
3 Copyright (c) 2007 by Christian Heimes <christian@cheimes.de>
5 Licensed to PSF under a Contributor Agreement.
6 """
8 import os
9 import sys
10 import shutil
12 here = os.path.abspath(os.path.dirname(__file__))
13 par = os.path.pardir
15 if 1:
16 TCL = "tcl8.4.16"
17 TK = "tk8.4.16"
18 TIX = "tix-8.4.0"
19 else:
20 TCL = "tcl8.5b3"
21 TK = "tcl8.5b3"
22 TIX = "Tix8.4.2"
24 ROOT = os.path.abspath(os.path.join(here, par, par, par))
25 # Windows 2000 compatibility: WINVER 0x0500
26 # http://msdn2.microsoft.com/en-us/library/aa383745.aspx
27 NMAKE = "nmake /nologo /f %s COMPILERFLAGS=-DWINVER=0x0500 %s %s"
29 def nmake(makefile, command="", **kw):
30 defines = ' '.join(k+'='+v for k, v in kw.items())
31 cmd = NMAKE % (makefile, defines, command)
32 print("\n\n"+cmd+"\n")
33 if os.system(cmd) != 0:
34 raise RuntimeError(cmd)
36 def build(platform, clean):
37 if platform == "Win32":
38 dest = os.path.join(ROOT, "tcltk")
39 machine = "X86"
40 elif platform == "x64":
41 dest = os.path.join(ROOT, "tcltk64")
42 machine = "X64"
43 else:
44 raise ValueError(platform)
46 # TCL
47 tcldir = os.path.join(ROOT, TCL)
48 if 1:
49 os.chdir(os.path.join(tcldir, "win"))
50 if clean:
51 nmake("makefile.vc", "clean")
52 nmake("makefile.vc")
53 nmake("makefile.vc", "install", INSTALLDIR=dest)
55 # TK
56 if 1:
57 os.chdir(os.path.join(ROOT, TK, "win"))
58 if clean:
59 nmake("makefile.vc", "clean", TCLDIR=tcldir)
60 nmake("makefile.vc", TCLDIR=tcldir)
61 nmake("makefile.vc", "install", TCLDIR=tcldir, INSTALLDIR=dest)
63 # TIX
64 if 1:
65 # python9.mak is available at http://svn.python.org
66 os.chdir(os.path.join(ROOT, TIX, "win"))
67 if clean:
68 nmake("python9.mak", "clean")
69 nmake("python9.mak", MACHINE=machine)
70 nmake("python9.mak", "install")
72 def main():
73 if len(sys.argv) < 2 or sys.argv[1] not in ("Win32", "x64"):
74 print("%s Win32|x64" % sys.argv[0])
75 sys.exit(1)
77 if "-c" in sys.argv:
78 clean = True
79 else:
80 clean = False
82 build(sys.argv[1], clean)
85 if __name__ == '__main__':
86 main()