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



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

Reply via email to