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: John Calcote
Subject: Re: ignore errors on specific command
Date: Wed, 31 Mar 2010 09:37:39 -0600
User-agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.9) Gecko/20100317 Thunderbird/3.0.4

On 3/31/2010 2:27 AM, Payal wrote:
Hi,

all:
        cmd1 ; cmd2; cmd3

How to ignore errors from cmd2 only? Putting -cmd2 will not work here.

How about this:

all: c1 c2 c3

c1:
        cmd1

c2:
        -cmd2

c3:
        cmd3

John





reply via email to

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