I have several targets defined in my top wscript
, let's call them build_a
, build_b
and build_c
.
How do I add a function all
to my wscript
, that builds all these targets (doesn't matter if sequential or in parallel).
So in dummy python code, I expect something like this:
def all():
tar = ['configure', 'build_a', 'build_b', 'build_c']