help-make
[Top][All Lists]
Advanced

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

Re: GNU Make - Hide compilation flags


From: Paul Smith
Subject: Re: GNU Make - Hide compilation flags
Date: Thu, 21 Apr 2011 00:48:22 -0400

On Thu, 2011-04-21 at 10:41 +0800, address@hidden wrote:
 
> I am newbie to Makefiles. When make is executed i want to hide the gcc
> compilation flags and would like to display only the C file getting
> compiled. Can you please help me doing this?

There is no built-in/predefined way to do this.  In order to do it
you'll have to write the make rules that compile your code in such a way
that they do this.

For example,

        %.o : %.c
                @echo "Compiling $<"
                @$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ -c $<

will do it.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <address@hidden>          Find some GNU make tips at:
 http://www.gnu.org                      http://make.mad-scientist.net
 "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]