help-make
[Top][All Lists]
Advanced

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

Re: How do I pipe the results of a compile session into xyz


From: Paul D. Smith
Subject: Re: How do I pipe the results of a compile session into xyz
Date: Thu, 31 Mar 2005 14:39:35 -0500

%% Uri Shkolnik <address@hidden> writes:

  us> How do I pipe the results of a compile session into
  us> grep ?

The same way you would in a shell command... in short, this is a shell
question not a make question.

  us> This is the closest as I get

  us> @$(CC) -c $(CFLAGS) $< -o $@ 2> $(GREP) -v I_dont_want

        @$(CC) $(CFLAGS) -c -o $@ $< 2>&1 | $(GREP) -v I_dont_want

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.paulandlesley.org
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist




reply via email to

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