This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Compiler option?


Are you talking about the commands like:
% make
gcc -g -c file1.c
gcc -g -c file2.c

If yes, then they are output of "make".

Then you'll need to modify the makefile:

If you have a line like:
 $(CC) -c $(CFLAGS) $<

change it to:
 @$(CC) -c $(CFLAGS) $<

Baically, adding an "@" tells "make" not to print out the command line.

Rayson



__________________________________________________
Do You Yahoo!?
Yahoo! Movies - coverage of the 74th Academy Awards®
http://movies.yahoo.com/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]