]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/contrib/buildall.py
2 #----------------------------------------------------------------------------
4 # Purpose: Invokes the build script for all modules defined in
11 # Copyright: (c) 1999 by Total Control Software
12 # Licence: wxWindows license
13 #----------------------------------------------------------------------------
16 sys
.path
.insert(0, '../distrib')
19 MODULELIST
= ['glcanvas', 'ogl', 'stc', ]
20 sys
.argv
[0] = '../../distrib/build.py'
23 for module
in MODULELIST
:
25 print "**** Building %s ****" % module
26 err
= build
.main([sys
.argv
[0], '-C', module
] + sys
.argv
[1:])