Reputation: 15502
How can I tell Make to stop logging
make: `foo.o' is up to date
When foo.o is up to date?
Upvotes: 2
Views: 1214
Reputation: 100836
You can use the -s
/ --silent
option to make
to suppress output; from the documentation:
‘-s’
‘--silent’
‘--quiet’
Silent operation; do not print the recipes as they are executed. See Recipe Echoing.
It doesn't say so explicitly but this also suppresses other types of informative output.
Upvotes: 5