This question already has an answer here:
- What does @: (at symbol colon) mean in a Makefile? 2 answers
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
?