Currently, if somebody wants to make his build parallel, he has to override the `compile()` method as follows: ```python def compile(self): super().compile(options='-j') ``` We should somehow provide this automatically. What do you think?