1
2
3
4
5
6
7
8
|
<h1 class="section">Recipe Echoing</h1> <p>Normally <code>make</code> prints each line of the recipe before it is executed. We call this <em>echoing</em> because it gives the appearance that you are typing the lines yourself. </p> <p>When a line starts with ‘<samp>@</samp>’, the echoing of that line is suppressed. The ‘<samp>@</samp>’ is discarded before the line is passed to the shell. Typically you would use this for a command whose only effect is to print something, such as an <code>echo</code> command to indicate progress through the makefile: </p> <div class="example"> <pre class="example">@echo About to make distribution files
</pre>
</div> <p>When <code>make</code> is given the flag ‘<samp>-n</samp>’ or ‘<samp>--just-print</samp>’ it only echoes most recipes, without executing them. See <a href="options-summary">Summary of Options</a>. In this case even the recipe lines starting with ‘<samp>@</samp>’ are printed. This flag is useful for finding out which recipes <code>make</code> thinks are necessary without actually doing them. </p> <p>The ‘<samp>-s</samp>’ or ‘<samp>--silent</samp>’ flag to <code>make</code> prevents all echoing, as if all recipes started with ‘<samp>@</samp>’. A rule in the makefile for the special target <code>.SILENT</code> without prerequisites has the same effect (see <a href="special-targets">Special Built-in Target Names</a>). </p><div class="_attribution">
<p class="_attribution-p">
Copyright © 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022 Free Software Foundation, Inc. <br>Licensed under the GNU Free Documentation License.<br>
<a href="https://www.gnu.org/software/make/manual/html_node/Echoing.html" class="_attribution-link">https://www.gnu.org/software/make/manual/html_node/Echoing.html</a>
</p>
</div>
|