Re: Disabling command output in a Makefile

From: Paul Pluzhnikov (ppluzhnikov-nsp_at_charter.net)
Date: 02/19/05


Date: 19 Feb 2005 08:43:04 -0800

pocm@sat.inesc-id.pt writes:

> @ disables the output of the line itself, how can I disable the output
> of the command ran?

        @echo THIS SHOULD NOT SHOW UP WHEN MAKE ALL IS RAN. >/dev/null 2>&1

Note that is generally a bad idea (TM): when something goes wrong
with the command that you "silenced", you'll have a hard time
finding out why you make doesn't work.

Cheers,

-- 
In order to understand recursion you must first understand recursion.
Remove /-nsp/ for email.