# main SConstruct for building entire release # invokes SConstruct file in each subdir # ejw, 8-may-2013 import os # invoke SConstruct in each subdir print '' for f in os.walk('.').next()[1]: if(f!='.svn'): print 'Processing package: ' + f SConscript(f + '/SConstruct') print ''