What does “@” mean in makefile?

前端 未结 2 691
失恋的感觉
失恋的感觉 2020-12-31 10:47

We offen use @echo \"do...\" to letting to print only do.... But who can tell me what is the mean of this condition ?

COUNT=$(shell         


        
相关标签:
2条回答
  • 2020-12-31 11:19

    It will hide the output of the commandline when executing. Normally each command, when executing a rule, is printed to the console. This will suppress this output.

    0 讨论(0)
  • 2020-12-31 11:26

    It disables printing the command line being executed. Any output from the command itself still appears. See this previous question or see this Makefile reference.

    0 讨论(0)
提交回复
热议问题