On 2011-01-29 4:08, Greg Chicares wrote:
Try using '$(MAKE)' instead of 'make' in your recipe, e.g. $(MAKE) -f Makefile.1 $(patsubst %-1,%,$@) || : Then the submake runs in parallel. In the following test case, the 'make' line runs one command at a time, but the '$(MAKE)' line runs four concurrent 'sleep' processes and is faster.
Oh! That fix my issue! I first try and then reread "5.7 Recursive Use of `make'" section from manual, where this explicitly written. -- Best regards! _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
