> On Mon, Sep 14, 2009 at 6:23 PM, David Boyce <[email protected]> > wrote: > I was under the impression that GNU make is guaranteed to work from left > to > right when making default goals?
I thought so as well, but in fact, even if I have all: foo bar For some reason make actually wants to build bar before foo (maybe because foo and bar are both phony targets which invoke other things?) Anyway, for whatever reason, the left to right order is violated in my particular case, and that's even before thinking about -j, which I also use. Sometimes I run "make foo" frequently and I want it to be as fast as possible without doing the wrong thing... -- View this message in context: http://www.nabble.com/Question-about-order-dependencies-tp25430782p25530120.html Sent from the Gnu - Make - Help mailing list archive at Nabble.com. _______________________________________________ Help-make mailing list [email protected] http://lists.gnu.org/mailman/listinfo/help-make
