I am looking for an elegant way for the parallelization of jobs in GNU make. Here is a sample of what I did so far. Make processes the directories dir-1, dir-2 and dir-3 in a se
SUBDIRS = a b c default: all $(SUBDIRS):: $(MAKE) -C $@ $(MAKECMDGOALS) all clean : $(SUBDIRS)