Compiler option?

Rayson Ho raysonlogin@yahoo.com
Sun Mar 24 22:30:00 GMT 2002


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/



More information about the Gcc mailing list