]>
git.saurik.com Git - wxWidgets.git/blob - utils/wxPython/modules/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
= ['html', 'glcanvas', 'utils', 'ogl', ] #'lseditor']
23 for module
in MODULELIST
:
25 print "**** Building %s ****" % module
26 err
= build
.main([sys
.argv
[0], '-C', module
] + sys
.argv
[1:])