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
Mark Reeder
Software Engineer
Harris/RF Communications
1680 University Avenue
Rochester, N.Y. 14610
Tel: (585)242-3455
Email: [EMAIL PROTECTED]
<<attachment: image001.jpg>>
_______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
