Concurrent build systems, such as "make", tend to let the output from the various running processes overrun each other. This makes the result hard to read.
There are some solutions that buffer the entire output from each process, and then output only when the process exists. This works fairly well for short processes, such as compilations, but prevents output of progress reports. This also prevents seeing the relative time each message was printed.
Makesh takes a different approach. It...