I don't want to complicate build_all too much, since it's intended to be just a
small convenience, and I still hope that we can eventually migrate to a better
build tool (see issue67).
What we could easily do is change build_all so that it forwards all arguments to
the make calls it invokes. Cleaning up everything could then be performed with:
$ ./build_all distclean
followed by
$ ./build_all
To use 4 parallel build processes, do something like:
$ ./build_all -j4
Does this address the wish?
(One small wrinkle ist that "./build_all distclean" will complain at the end
that "validate" cannot be found. But I think we can ignore this.)
|