Friday 6 February 2009

Tell "make" to be quiet

Lately I've been compiling large programs and I've been looking for a way to get reduce the amount of compiling information output. I only want to see warnings and errors.

Luckily there is switch in "make" which does this:
  • make -s
The switch "-s" tells "make" not to echo commands. For more information, see:
  • make --help

No comments:

Post a Comment