This question already has an answer here:
In Makefile, in commands of the form
all:
@set -e; \
do more stuff
I know the set -e commands the shell to to exit on failure. What is the significance of the @
attached to set
?
This question already has an answer here:
In Makefile, in commands of the form
all:
@set -e; \
do more stuff
I know the set -e commands the shell to to exit on failure. What is the significance of the @
attached to set
?
In a Makefile, the
@
symbol means that the command is not echoed to the screen when it is run.