]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/distrib/build.py
2 #----------------------------------------------------------------------------
4 # Purpose: This script is used to build wxPython. It reads a build
5 # configuration file in the requested project directory and
6 # based on the contents of the file can build Makefiles for
7 # unix or win32, and can execute make with various options
8 # potentially automating the entire build/install/clean process
9 # from a single command.
13 # Created: 18-Aug-1999
15 # Copyright: (c) 1999 by Total Control Software
16 # Licence: wxWindows license
17 #----------------------------------------------------------------------------
21 This script is used to build wxPython. It reads a build configuration
22 file in the requested project directory and based on the contents of
23 the file can build Makefiles for unix or win32, and can execute make
24 with various options potentially automating the entire
25 build/install/clean process from a single command.
27 The default action is to build the Makefile and exit.
30 -C dir CD to dir before doing anything
31 -B file Use file as the build configuration (default ./build.cfg)
32 -M file Use file as the name of the makefile to create
35 -b Build the module (runs make)
36 -i Install the module (runs make install)
37 -c Cleanup (runs make clean)
38 -u Uninstall (runs make uninstall)
45 The build configuration file lists targets, source files and options
46 for the the build process. The contents of the build.cfg are used to
47 dynamically generate the Makefile.
49 To prevent you from getting screwed when the default build.cfg is
50 updated, you can override the values in build.cfg by putting your
51 custom definitions in a file named build.local. You can also place a
52 build.local file in the parent directory, or even in the grandparent
53 directory for project-wide overrides. Finally, command-line arguments
54 of the form NAME=VALUE can also be used to override simple configuration
55 values. The order of evaluation is:
57 0. comman-line flags (-M, -b, etc.)
59 2. ../../build.local (if present)
60 3. ../build.local (if present)
61 4. ./build.local (if present)
62 5. command-line NAME=VALUEs
64 The config files are actually just Python files that get exec'ed in a
65 separate namespace which is then used later as a configuration object.
66 This keeps the build script simple in that it doesn't have to parse
67 anything, and the config files can be much more than just names and
68 values as pretty much any python code can be executed. The global
69 variables set in the config namespace are what are used later as
75 The following variables can be set in the config files. Only a few are
76 required, the rest will either have suitable defaults or will be
77 calculated from your current Python runtime environment.
79 MODULE The name of the extension module to produce
80 SWIGFILES A list of files that should be run through SWIG
81 SWIGFLAGS Flags for SWIG
82 SOURCES Other C/C++ sources that should be part of the module
83 PYFILES Other Python files that should be installed with the module
84 CFLAGS Flags to be used by the compiler
85 LFLAGS Flags to be used at the link step
86 LIBS Libraries to be linked with
88 OTHERCFLAGS Extra flags to append to CFLAGS
89 OTHERLFLAGS Extra flags to append to LFLAGS
90 OTHERSWIGFLAGS Extra flags to append to SWIGFLAGS
91 OTHERLIBS Other libraries to be linked with, in addition to LIBS
92 OTHERTARGETS Other targets to be placed on the default rule line
94 Other targets to be placed on the install rule line
95 OTHERRULES This text is placed at the end of the makefile and
96 will typically be used for adding rules and such
97 DEFAULTRULE Text to be used for the default rule in the makefile
99 TARGETDIR Destination for the install step
101 MAKE The make program to use
102 MAKEFILE The name of the makefile
104 runBuild Setting this to 1 is eqivalent to the -b flag
105 runInstall Setting this to 1 is eqivalent to the -i flag
106 runClean Setting this to 1 is eqivalent to the -c flag
107 runUninstall Setting this to 1 is eqivalent to the -u flag
109 PYVERSION Version number of Python used in pathnames
110 PYPREFIX The root of the Python install
111 EXECPREFIX The root of the Python install for binary files
112 PYTHONLIB The Python link library
116 import sys
, os
, string
, getopt
118 #----------------------------------------------------------------------------
119 # This is really the wxPython version number, and will be placed in the
120 # Makefiles for use with the distribution related targets.
122 __version__
= '2.1.5'
124 #----------------------------------------------------------------------------
128 opts
, args
= getopt
.getopt(args
[1:], 'C:B:M:bicu')
133 if not os
.environ
.has_key('WXWIN'):
134 print "WARNING: WXWIN is not set in the environment. WXDIR may not\n"\
135 " be set properly in the makefile, you will have to \n"\
136 " set the environment variable or override in build.local."
139 bldCfgLocal
= 'build.local'
140 MAKEFILE
= 'Makefile'
146 for flag
, value
in opts
:
147 if flag
== '-C': os
.chdir(value
)
148 elif flag
== '-B': bldCfgFile
= value
149 elif flag
== '-M': makefile
= value
150 elif flag
== '-b': runBuild
= 1
151 elif flag
== '-c': runClean
= 1
152 elif flag
== '-i': runInstall
= 1
153 elif flag
== '-u': runUninstall
= 1
155 elif flag
== '-h': usage(); sys
.exit(1)
156 else: usage(); sys
.exit(1)
158 config
= BuildConfig(bldCfg
= bldCfg
,
159 bldCfgLocal
= bldCfgLocal
,
162 runInstall
= runInstall
,
164 runUninstall
= runUninstall
)
167 if config
.readConfigFiles(args
):
169 config
.makeMakefile()
172 cmd
= "%s -f %s" % (config
.MAKE
, config
.MAKEFILE
)
173 print "Running:", cmd
176 if not err
and config
.runInstall
:
177 cmd
= "%s -f %s install" % (config
.MAKE
, config
.MAKEFILE
)
178 print "Running:", cmd
182 if not err
and config
.runClean
:
183 cmd
= "%s -f %s clean" % (config
.MAKE
, config
.MAKEFILE
)
184 print "Running:", cmd
187 if not err
and config
.runUninstall
:
188 cmd
= "%s -f %s uninstall" % (config
.MAKE
, config
.MAKEFILE
)
189 print "Running:", cmd
195 #----------------------------------------------------------------------------
200 #----------------------------------------------------------------------------
203 if sys
.platform
!= 'win32':
204 st
= string
.join(string
.split(st
, '\\'), '/')
207 #----------------------------------------------------------------------------
210 return string
.join(string
.split(string
.strip(st
), ' '), ' \\\n\t')
212 #----------------------------------------------------------------------------
215 def __init__(self
, **kw
):
216 self
.__dict
__.update(kw
)
219 #------------------------------------------------------------
220 def setDefaults(self
):
221 self
.VERSION
= __version__
224 self
.SWIGFLAGS
= '-c++ -shadow -python -keyword -dnone -I$(WXPSRCDIR)'
228 self
.OTHERCFLAGS
= ''
229 self
.OTHERLFLAGS
= ''
230 self
.OTHERSWIGFLAGS
= ''
232 self
.OTHERTARGETS
= ''
233 self
.OTHERINSTALLTARGETS
= ''
234 self
.OTHERUNINSTALLTARGETS
= ''
236 self
.DEFAULTRULE
= 'default: $(GENCODEDIR) $(TARGET)'
237 self
.PYVERSION
= sys
.version
[:3]
238 self
.PYPREFIX
= sys
.prefix
239 self
.EXECPREFIX
= sys
.exec_prefix
240 self
.WXDIR
= '$(WXWIN)'
242 self
.WXP_USE_THREAD
= '1'
243 self
.WXUSINGDLL
= '1'
245 self
.WXPSRCDIR
= '$(WXDIR)/utils/wxPython/src'
250 if sys
.platform
== 'win32':
252 self
.PYTHONLIB
= '$(PYPREFIX)\\libs\\python15.lib'
253 self
.TARGETDIR
= '$(PYPREFIX)\\wxPython'
254 self
.LIBS
= '$(PYTHONLIB) $(WXPSRCDIR)\wxc.lib'
255 self
.GENCODEDIR
= 'msw'
256 self
.SWIGTOOLKITFLAG
= '-D__WXMSW__'
258 self
.TARGET
= '$(MODULE).pyd'
259 self
.CFLAGS
= '-I$(PYPREFIX)\include -I$(WXPSRCDIR) -I. /Fp$(MODULE).pch /YXhelpers.h -DSWIG_GLOBAL -DHAVE_CONFIG_H $(THREAD) '
260 self
.LFLAGS
= '$(DEBUGLFLAGS) /DLL /subsystem:windows,3.50 /machine:I386 /nologo'
263 self
.OVERRIDEFLAGS
= '/GX-'
264 self
.RMCMD
= '-erase '
265 self
.WXPSRCDIR
= os
.path
.normpath(self
.WXPSRCDIR
)
271 self
.PYLIB
= '$(EXECPREFIX)/lib/python$(PYVERSION)'
272 self
.LIBPL
= '$(PYLIB)/config'
273 self
.PYTHONLIB
= '$(LIBPL)/libpython$(PYVERSION).a'
274 self
.TARGETDIR
= '$(EXECPREFIX)/lib/python$(PYVERSION)/site-packages/wxPython'
275 self
.TARGET
= '$(MODULE)module$(SO)'
277 self
.HELPERLIB
= 'wxPyHelpers'
278 self
.HELPERLIBDIR
= '/usr/local/lib'
279 self
.CFLAGS
= '-DSWIG_GLOBAL -DHAVE_CONFIG_H $(THREAD) -I. '\
280 '`wx-config --cflags` -I$(PYINCLUDE) -I$(EXECINCLUDE) '\
282 self
.LFLAGS
= '-L$(WXPSRCDIR) `wx-config --libs`'
283 self
.LIBS
= '-l$(HELPERLIB)'
284 self
.RMCMD
= '-rm -f '
286 # **** What to do when I start supporting Motif, etc.???
287 self
.GENCODEDIR
= 'gtk'
288 self
.SWIGTOOLKITFLAG
= '-D__WXGTK__'
290 # Extract a few things from Python's Makefile...
292 filename
= os
.path
.join(self
.EXECPREFIX
,
293 'lib/python'+self
.PYVERSION
,
295 mfText
= string
.split(open(filename
, 'r').read(), '\n')
297 raise SystemExit, "Python development files not found"
299 self
.CCC
= self
.findMFValue(mfText
, 'CCC')
300 self
.CC
= self
.findMFValue(mfText
, 'CC')
301 self
.OPT
= self
.findMFValue(mfText
, 'OPT')
302 self
.SO
= self
.findMFValue(mfText
, 'SO')
303 self
.LDSHARED
= self
.findMFValue(mfText
, 'LDSHARED')
304 self
.CCSHARED
= self
.findMFValue(mfText
, 'CCSHARED')
305 #self.LINKFORSHARED = self.findMFValue(mfText, 'LINKFORSHARED')
306 #self. = self.findMFValue(mfText, '')
307 #self. = self.findMFValue(mfText, '')
310 # The majority of cases will require LDSHARED to be
311 # modified to use the C++ driver instead of the C driver
312 # for linking. We'll try to do it here and if we goof up
313 # then the user can correct it in their build.local file.
314 self
.LDSHARED
= string
.join(['$(CCC)'] +
315 string
.split(self
.LDSHARED
, ' ')[1:],
319 #------------------------------------------------------------
321 # This is called after the config files have been evaluated
322 # so we can do some sanity checking...
323 if sys
.platform
!= 'win32':
325 print "Warning: C++ compiler not specified (CCC). Assuming c++"
328 print "Warning: C compiler not specified (CC). Assuming cc"
331 #------------------------------------------------------------
332 def findMFValue(self
, mfText
, st
):
333 # Find line begining with st= and return the value
334 # Regex would probably be to cooler way to do this, but
335 # I think this is the most understandable.
337 if string
.find(line
, st
+'=') == 0:
338 st
= string
.strip(line
[len(st
)+1:])
342 #------------------------------------------------------------
343 def makeMakefile(self
):
345 # make a list of object file names
347 for name
in self
.SWIGFILES
:
348 objects
= objects
+ os
.path
.splitext(name
)[0] + self
.OBJEXT
+ ' '
349 for name
in self
.SOURCES
:
350 obj
= os
.path
.basename(name
)
351 objects
= objects
+ os
.path
.splitext(obj
)[0] + self
.OBJEXT
+ ' '
352 self
.OBJECTS
= splitlines(objects
)
355 # now build the text for the dependencies
357 for name
in self
.SWIGFILES
:
358 rootname
= os
.path
.splitext(name
)[0]
359 text
= '$(GENCODEDIR)/%s.cpp $(GENCODEDIR)/%s.py : %s.i %s\n' \
360 '$(TARGETDIR)\\%s.py : $(GENCODEDIR)\\%s.py\n' % \
361 (rootname
, rootname
, rootname
, self
.SWIGDEPS
, rootname
, rootname
)
362 depends
= depends
+ text
364 text
= '%s%s : %s\n' % \
365 (os
.path
.splitext(name
)[0], self
.OBJEXT
, self
.OTHERDEPS
)
366 depends
= depends
+ text
367 for name
in self
.PYFILES
:
368 text
= '$(TARGETDIR)\\%s.py : %s.py\n' % \
369 tuple([os
.path
.splitext(name
)[0]] * 2)
370 depends
= depends
+ text
372 for name
in self
.SOURCES
:
373 name
= os
.path
.basename(name
)
374 text
= '%s%s : %s\n' % \
375 (os
.path
.splitext(name
)[0], self
.OBJEXT
, self
.OTHERDEPS
)
376 depends
= depends
+ text
378 self
.DEPENDS
= swapslash(depends
)
381 # and the list of .py files
383 for name
in self
.SWIGFILES
:
384 pymodules
= pymodules
+ '$(TARGETDIR)\\%s.py ' % os
.path
.splitext(name
)[0]
385 for name
in self
.PYFILES
:
386 pymodules
= pymodules
+ '$(TARGETDIR)\\%s.py ' % os
.path
.splitext(name
)[0]
387 self
.PYMODULES
= splitlines(swapslash(pymodules
))
390 # now make a list of the python files that would need uninstalled
392 for name
in self
.SWIGFILES
:
393 pycleanup
= pycleanup
+ self
.makeCleanupList(name
)
394 for name
in self
.PYFILES
:
395 pycleanup
= pycleanup
+ self
.makeCleanupList(name
)
396 self
.PYCLEANUP
= swapslash(pycleanup
)
399 # finally, build the makefile
400 if sys
.platform
== 'win32':
402 self
.RESFILE
= '$(MODULE).res'
403 self
.RESRULE
= '$(MODULE).res : $(MODULE).rc $(WXDIR)\\include\\wx\\msw\\wx.rc\n\t'\
404 '$(rc) -r /i$(WXDIR)\\include -fo$@ $(MODULE).rc'
405 text
= win32Template
% self
.__dict
__
407 text
= unixTemplate
% self
.__dict
__
408 f
= open(self
.MAKEFILE
, 'w')
412 print "Makefile created: ", self
.MAKEFILE
416 #------------------------------------------------------------
417 def makeCleanupList(self
, name
):
419 st
= st
+ '\t%s$(TARGETDIR)\\%s.py\n' % (self
.RMCMD
, os
.path
.splitext(name
)[0])
420 st
= st
+ '\t%s$(TARGETDIR)\\%s.pyc\n' % (self
.RMCMD
, os
.path
.splitext(name
)[0])
421 st
= st
+ '\t%s$(TARGETDIR)\\%s.pyo\n' % (self
.RMCMD
, os
.path
.splitext(name
)[0])
425 #------------------------------------------------------------
426 def readConfigFiles(self
, args
):
427 return self
.processFile(self
.bldCfg
, 1) and \
428 self
.processFile(os
.path
.join('../..', self
.bldCfgLocal
)) and \
429 self
.processFile(os
.path
.join('..', self
.bldCfgLocal
)) and \
430 self
.processFile(os
.path
.join('.', self
.bldCfgLocal
)) and \
431 self
.processArgs(args
)
433 #------------------------------------------------------------
434 def processFile(self
, filename
, required
=0):
436 text
= open(filename
, 'r').read()
439 print "Unable to open %s" % filename
445 exec(text
, self
.__dict
__)
447 print "Error evaluating %s" % filename
449 traceback
.print_exc()
454 #------------------------------------------------------------
455 def processArgs(self
, args
):
458 pair
= string
.split(st
, '=')
461 self
.__dict
__[name
] = value
463 print "Error parsing command-line: %s" % st
469 #------------------------------------------------------------
475 #----------------------------------------------------------------------------
476 #----------------------------------------------------------------------------
477 #----------------------------------------------------------------------------
480 #----------------------------------------------------------------------
481 # This makefile was autogenerated from build.py. Your changes will be
482 # lost if the generator is run again. You have been warned.
483 #----------------------------------------------------------------------
486 VERSION = %(VERSION)s
488 SWIGFLAGS = %(SWIGFLAGS)s %(SWIGTOOLKITFLAG)s %(OTHERSWIGFLAGS)s
491 PYVERSION = %(PYVERSION)s
492 PYPREFIX = %(PYPREFIX)s
493 EXECPREFIX = %(EXECPREFIX)s
494 PYTHONLIB = %(PYTHONLIB)s
496 WXP_USE_THREAD = %(WXP_USE_THREAD)s
497 WXUSINGDLL = %(WXUSINGDLL)s
498 GENCODEDIR = %(GENCODEDIR)s
499 RESFILE = %(RESFILE)s
500 WXPSRCDIR = %(WXPSRCDIR)s
503 TARGETDIR = %(TARGETDIR)s
505 OBJECTS = %(OBJECTS)s
506 PYMODULES = %(PYMODULES)s
512 !if "$(FINAL)" == "0"
513 DEBUGLFLAGS = /DEBUG /INCREMENTAL:YES
515 DEBUGLFLAGS = /INCREMENTAL:NO
517 !if "$(WXP_USE_THREAD)" == "1"
518 THREAD=-DWXP_USE_THREAD=1
525 OVERRIDEFLAGS=%(OVERRIDEFLAGS)s
526 EXTRAFLAGS = $(CFLAGS) %(OTHERCFLAGS)s
528 LFLAGS = %(LFLAGS)s %(OTHERLFLAGS)s
529 EXTRALIBS = %(LIBS)s %(OTHERLIBS)s
533 #----------------------------------------------------------------------
535 !include $(WXDIR)\\src\\makevc.env
537 #----------------------------------------------------------------------
539 %(DEFAULTRULE)s %(OTHERTARGETS)s
543 install: $(TARGETDIR) $(TARGETDIR)\\$(TARGET) pycfiles %(OTHERINSTALLTARGETS)s
559 uninstall: %(OTHERUNINSTALLTARGETS)s
560 -erase $(TARGETDIR)\\$(TARGET)
564 #----------------------------------------------------------------------
565 # implicit rule for compiling .cpp and .c files
568 $(CPPFLAGS) /c /Tp $<
571 {$(GENCODEDIR)}.cpp{}.obj:
573 $(CPPFLAGS) /c /Tp $<
583 # Implicit rules to run SWIG
584 {}.i{$(GENCODEDIR)}.cpp:
585 swig $(SWIGFLAGS) -c -o $@ $<
587 {}.i{$(GENCODEDIR)}.py:
588 swig $(SWIGFLAGS) -c -o $(GENCODEDIR)\\tmp_wrap.cpp $<
589 -erase $(GENCODEDIR)\\tmp_wrap.cpp
592 {$(GENCODEDIR)}.py{$(TARGETDIR)}.py:
595 {}.py{$(TARGETDIR)}.py:
598 #----------------------------------------------------------------------
600 $(TARGET) : $(DUMMYOBJ) $(WXLIB) $(OBJECTS) $(RESFILE)
603 $(LFLAGS) /def:$(MODULE).def /implib:./$(MODULE).lib
604 $(DUMMYOBJ) $(OBJECTS) $(RESFILE)
612 $(TARGETDIR)\\$(TARGET) : $(TARGET)
616 pycfiles : $(PYMODULES)
617 $(EXECPREFIX)\\python $(PYPREFIX)\\Lib\\compileall.py -l $(TARGETDIR)
618 $(EXECPREFIX)\\python -O $(PYPREFIX)\Lib\\compileall.py -l $(TARGETDIR)
627 #----------------------------------------------------------------------
631 #----------------------------------------------------------------------
644 #----------------------------------------------------------------------------
645 #----------------------------------------------------------------------------
646 #----------------------------------------------------------------------------
649 #----------------------------------------------------------------------
650 # This makefile was autogenerated from build.py. Your changes will be
651 # lost if the generator is run again. You have been warned.
652 #----------------------------------------------------------------------
657 VERSION = %(VERSION)s
659 SWIGFLAGS = %(SWIGFLAGS)s %(SWIGTOOLKITFLAG)s %(OTHERSWIGFLAGS)s
660 CFLAGS = %(CFLAGS)s $(OPT) %(OTHERCFLAGS)s
661 LFLAGS = %(LFLAGS)s %(OTHERLFLAGS)s
662 LIBS = %(LIBS)s %(OTHERLIBS)s
663 PYVERSION = %(PYVERSION)s
664 PYPREFIX = %(PYPREFIX)s
665 EXECPREFIX = %(EXECPREFIX)s
666 PYINCLUDE = $(PYPREFIX)/include/python$(PYVERSION)
667 EXECINCLUDE = $(EXECPREFIX)/include/python$(PYVERSION)
670 PYTHONLIB = %(PYTHONLIB)s
672 WXP_USE_THREAD = %(WXP_USE_THREAD)s
673 GENCODEDIR = %(GENCODEDIR)s
674 WXPSRCDIR = %(WXPSRCDIR)s
675 HELPERLIB = %(HELPERLIB)s
676 HELPERLIBDIR = %(HELPERLIBDIR)s
678 TARGETDIR = %(TARGETDIR)s
685 LDSHARED = %(LDSHARED)s
686 CCSHARED = %(CCSHARED)s
689 OBJECTS = %(OBJECTS)s
690 PYMODULES = %(PYMODULES)s
694 ifeq ($(WXP_USE_THREAD), 1)
695 THREAD=-DWXP_USE_THREAD
698 #----------------------------------------------------------------------
700 %(DEFAULTRULE)s %(OTHERTARGETS)s
702 install: $(TARGETDIR) $(TARGETDIR)/$(TARGET) pycfiles %(OTHERINSTALLTARGETS)s
708 uninstall: %(OTHERUNINSTALLTARGETS)s
709 -rm -f $(TARGETDIR)/$(TARGET)
713 #----------------------------------------------------------------------
716 $(CCC) $(CCSHARED) $(CFLAGS) $(OTHERCFLAGS) -c $<
718 %%.o : $(GENCODEDIR)/%%.cpp
719 $(CCC) $(CCSHARED) $(CFLAGS) $(OTHERCFLAGS) -c $<
722 $(CC) $(CCSHARED) $(CFLAGS) $(OTHERCFLAGS) -c $<
724 %%.o : $(GENCODEDIR)/%%.c
725 $(CC) $(CCSHARED) $(CFLAGS) $(OTHERCFLAGS) -c $<
728 $(GENCODEDIR)/%%.cpp : %%.i
729 swig $(SWIGFLAGS) -c -o $@ $<
731 $(GENCODEDIR)/%%.py : %%.i
732 swig $(SWIGFLAGS) -c -o $(GENCODEDIR)/tmp_wrap.cpp $<
733 rm $(GENCODEDIR)/tmp_wrap.cpp
740 $(TARGETDIR)/%% : $(GENCODEDIR)/%%
743 #----------------------------------------------------------------------
747 #----------------------------------------------------------------------
749 $(TARGET) : $(OBJECTS)
750 $(LDSHARED) $(OBJECTS) $(LFLAGS) $(LIBS) $(OTHERLIBS) -o $(TARGET)
754 pycfiles : $(PYMODULES)
755 $(EXECPREFIX)/bin/python $(PYLIB)/compileall.py -l $(TARGETDIR)
756 $(EXECPREFIX)/bin/python -O $(PYLIB)/compileall.py -l $(TARGETDIR)
765 #----------------------------------------------------------------------
775 #----------------------------------------------------------------------------
777 if __name__
== '__main__':
780 #----------------------------------------------------------------------------