|
Loading...
|
help-make@gnu.org
[Prev] Thread [Next] | [Prev] Date [Next]
Making sub-grouping of directories build in parallel Reeder, Mark Tue Mar 27 06:08:48 2007
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
- Making sub-grouping of directories build in parallel Reeder, Mark 2007/03/27 <=