Max Heiber
Max Heiber

Reputation: 15502

How can I suppress the 'is up to date' message from Make?

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

Answers (1)

MadScientist
MadScientist

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

Related Questions