X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/bfdafe63728d3bb71ed18df6cf704eaab0ffd27c..77031c5a16a60a21474904f9b409aaff44e31488:/utils/wxPython/modules/buildall.py?ds=inline diff --git a/utils/wxPython/modules/buildall.py b/utils/wxPython/modules/buildall.py new file mode 100755 index 0000000000..36128ae668 --- /dev/null +++ b/utils/wxPython/modules/buildall.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +#---------------------------------------------------------------------------- +# Name: buildall.py +# Purpose: Invokes the build script for all modules defined in +# MODULELIST +# +# Author: Robin Dunn +# +# Created: 18-Aug-1999 +# RCS-ID: $Id$ +# Copyright: (c) 1999 by Total Control Software +# Licence: wxWindows license +#---------------------------------------------------------------------------- + +import sys, os +sys.path.insert(0, '../distrib') +import build + +MODULELIST = ['html', 'glcanvas', 'utils', 'lseditor'] + + + +for module in MODULELIST: + cwd = os.getcwd() + print "**** Building %s" % module + build.main([sys.argv[0], '-C', module] + sys.argv[1:]) + os.chdir(cwd)