|
From: | Reeder, Mark |
Subject: | Making sub grouping of directories build in parallel |
Date: | Mon, 26 Mar 2007 10:15:37 -0400 |
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 Tel: (585)242-3455 Email: address@hidden |
[Prev in Thread] | Current Thread | [Next in Thread] |