Hi Alexey,

Alexey Neyman <[EMAIL PROTECTED]> writes:

> I already expressed that the "truly order-only prerequisites" (TOOP),
> introduced as a part of the Makefile syntax, will indeed solve the
> problem. But, the necessity to add these prerequisites to each and
> every rule (including implicit ones) will nearly render this
> extension unusable.

Could you remind me how is that so? E.g., the following rule with
.WAIT:

foo: bar .WAIT baz

will be rewritten as

foo: bar baz
bar: % baz


I vaguely remember that it has something to do with prerequisites
of, say, bar and baz being build in parallel:

foo: bar baz
bar: % baz

bar: bar-1
baz: baz-1

Here, bar-1 and baz-1 can be built in parallel (is it not the
case with .WAIT, btw?). Is there some non-academic example where
this will cause problems?


thanks,
-boris



_______________________________________________
Help-make mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to