I need some help with a parallel make issue. SEE MAKEFILE BELOW
--------makefile--------------------------------------------------------
----------------------------------
-include ../makeScripts/Makefile.submake
.NOTPARALLEL:
SUBDIRS = $(addsuffix /src/lib/,$(MULTIPLE_PLATFORM)) \
<-- I need to compile this in parallel
$(addsuffix /src/bin/,$(MULTIPLE_PLATFORM)) \
<-- followed by this in parallel
$(addsuffix /src/images/,$(MULTIPLE_PLATFORM))
<-- followed by this in parallel
--------makefile--------------------------------------------------------
----------------------------------
What I want to do:
build the "scr/lib" directories in parallel
followed by the "src/bin" directories built in parallel
followed by the "src/images" directories built in parallel.
What happens when the ".NOTPARALLEL:" is removed.
All directories are built in parallel.
("scr/lib", "src/bin", and "src/images")
Is there a way to make selective groups of sub directories compile in
parallel?
Thanks
Mark
_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make