Suppressing output from my Makefile
You can use make --silent
(at least for GNU make)
Use an @
to quiet the output:
default:
@gcc -o ...
You can find the documentation here: Recipe echoing. (Or you can invoke make
with make -s
to suppress all echoing.)