Cristophe,

On Monday 11 December 2006 15:50, Christophe LYON wrote:
> I don't think so:
> x2 will wait for x1 to complete, and x3 will wait for x2.

I applied it and tried it out:

[EMAIL PROTECTED]:~/work/make> cat mak
.PHONY: a b
a: x1 .WAIT x2
b: x2 .WAIT x3
x1 x2 x3:
        @echo start $@; sleep 1; echo finish $@
[EMAIL PROTECTED]:~/work/make> ./make/make -f mak -j a b
start x1
finish x1
start x2
finish x2
start x3
finish x3
[EMAIL PROTECTED]:~/work/make> ./make/make -f mak -j b a
start x2
start x1
finish x2
finish x1
start x3
finish x3

Regards,
Alexey.


-- 
Please do not try to stop us this time. We are firm in our resolve.
                        -- Pkunks, SC2


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

Reply via email to