I've this Makefile
framework:
@$(MAKE) -C $(HIGGSBASESELECTOR)
@$(MAKE) -C $(MATRIX4)
@$(MAKE) -C $(SUBSELECTOR)
@$(MAKE) -C $(MCSUBSELECTOR)
@$(MAKE) -C $(MATRIXSUBSELECTOR)
@$(MAKE) -C $(CHECKSUBSELECTOR)
...
if I run
make -j framework
it uses only one process. What is the best (and fast) way to refactor this Makfile to parallize the compilation?