I see the following rule in an ancient GNUMakefile
.
always:
@:
What does it mean?
I see the following rule in an ancient GNUMakefile
.
always:
@:
What does it mean?
The '@' tells make to run the command but not echo the results.
The ':' is a shell command that does nothing.
This target appears to be a target that simply does nothing and does not tell you about it.
It's used to tell make to execute the command but not to echo it to the terminal.