On Wed, Mar 31, 2010 at 11:37 AM, John Calcote <[email protected]> wrote:
> How about this:
>
> all: c1 c2 c3
>
> c1:
>        cmd1
>
> c2:
>        -cmd2
>
> c3:
>        cmd3

This would work but would also require:

.PHONY: c1 c2 c3
.NOTPARALLEL:

and is generally less useful than the previous solution. The ordering
is also unlear to a non-make-expert.

-David Boyce


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

Reply via email to