help-make
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: ignore errors on specific command


From: David Boyce
Subject: Re: ignore errors on specific command
Date: Wed, 31 Mar 2010 11:59:38 -0400

On Wed, Mar 31, 2010 at 11:37 AM, John Calcote <address@hidden> 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]