On Tue, 2007-07-31 at 10:33 -0500, David A. Greene wrote: > Simple question: when make tries to rebuild makefiles (included .mk > files, for example), does it do so in parallel if -j was specified?
Yes. The rebuild of makefiles is in every way identical to all other make rule processing: make simply runs its normal processing as if you'd invoked it with the makefiles as targets, and if any are rebuilt then it re-execs itself. -- ------------------------------------------------------------------------------- Paul D. Smith <[EMAIL PROTECTED]> Find some GNU make tips at: http://www.gnu.org http://make.paulandlesley.org "Please remain calm...I may be mad, but I am a professional." --Mad Scientist _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
