• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1"""Script to compile the dependencies of _tkinter
2
3Copyright (c) 2007 by Christian Heimes <christian@cheimes.de>
4
5Licensed to PSF under a Contributor Agreement.
6"""
7
8import os
9import sys
10
11here = os.path.abspath(os.path.dirname(__file__))
12par = os.path.pardir
13
14TCL = "tcl8.5.2"
15TK = "tk8.5.2"
16TIX = "tix-8.4.0.x"
17
18ROOT = os.path.abspath(os.path.join(here, par, par))
19# Windows 2000 compatibility: WINVER 0x0500
20# http://msdn2.microsoft.com/en-us/library/aa383745.aspx
21NMAKE = ('nmake /nologo /f %s '
22    'COMPILERFLAGS=\"-DWINVER=0x0500 -D_WIN32_WINNT=0x0500 -DNTDDI_VERSION=NTDDI_WIN2KSP4\" '
23    '%s %s')
24
25def nmake(makefile, command="", **kw):
26    defines = ' '.join('%s=%s' % i for i in kw.items())
27    cmd = NMAKE % (makefile, defines, command)
28    print("\n\n"+cmd+"\n")
29    if os.system(cmd) != 0:
30        raise RuntimeError(cmd)
31
32def build(platform, clean):
33    if platform == "Win32":
34        dest = os.path.join(ROOT, "tcltk")
35        machine = "X86"
36    elif platform == "AMD64":
37        dest = os.path.join(ROOT, "tcltk64")
38        machine = "AMD64"
39    else:
40        raise ValueError(platform)
41
42    # TCL
43    tcldir = os.path.join(ROOT, TCL)
44    if 1:
45        os.chdir(os.path.join(tcldir, "win"))
46        if clean:
47            nmake("makefile.vc", "clean")
48        nmake("makefile.vc", MACHINE=machine)
49        nmake("makefile.vc", "install", INSTALLDIR=dest, MACHINE=machine)
50
51    # TK
52    if 1:
53        os.chdir(os.path.join(ROOT, TK, "win"))
54        if clean:
55            nmake("makefile.vc", "clean", DEBUG=0, TCLDIR=tcldir)
56        nmake("makefile.vc", DEBUG=0, MACHINE=machine)
57        nmake("makefile.vc", "install", DEBUG=0, INSTALLDIR=dest, MACHINE=machine)
58
59    # TIX
60    if 1:
61        # python9.mak is available at http://svn.python.org
62        os.chdir(os.path.join(ROOT, TIX, "win"))
63        if clean:
64            nmake("python.mak", "clean")
65        nmake("python.mak", MACHINE=machine, INSTALL_DIR=dest)
66        nmake("python.mak", "install", INSTALL_DIR=dest)
67
68def main():
69    if len(sys.argv) < 2 or sys.argv[1] not in ("Win32", "AMD64"):
70        print("%s Win32|AMD64" % sys.argv[0])
71        sys.exit(1)
72
73    if "-c" in sys.argv:
74        clean = True
75    else:
76        clean = False
77
78    build(sys.argv[1], clean)
79
80
81if __name__ == '__main__':
82    main()
83