Re: Disabling command output in a Makefile
From: Paul Pluzhnikov (ppluzhnikov-nsp_at_charter.net)
Date: 02/19/05
- Next message: Douglas Dillon: "Looking for direction"
- Previous message: Barry Margolin: "Re: Sendto(2) Never Reaches Wire"
- In reply to: pocm_at_sat.inesc-id.pt: "Disabling command output in a Makefile"
- Next in thread: pmatos: "Re: Disabling command output in a Makefile"
- Reply: pmatos: "Re: Disabling command output in a Makefile"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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.
- Next message: Douglas Dillon: "Looking for direction"
- Previous message: Barry Margolin: "Re: Sendto(2) Never Reaches Wire"
- In reply to: pocm_at_sat.inesc-id.pt: "Disabling command output in a Makefile"
- Next in thread: pmatos: "Re: Disabling command output in a Makefile"
- Reply: pmatos: "Re: Disabling command output in a Makefile"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]