GNU Make: Difference between revisions

No edit summary
Line 25: Line 25:
* Arguments to the shell can be specified via <tt>.SHELLFLAGS</tt>
* Arguments to the shell can be specified via <tt>.SHELLFLAGS</tt>
** By default, it's <tt>-c</tt>, or <tt>-ec</tt> in POSIX mode
** By default, it's <tt>-c</tt>, or <tt>-ec</tt> in POSIX mode
* Remember that errors in the body of a shell loop don't set the overall return value!<code>
* Remember that errors in the body of a shell loop don't set the overall return value!<pre>
target:
target:
&+nbspwhile true ; do false ; done</code>This recipe cannot be successfully completed!
        while true ; do false ; done</pre>This recipe cannot be successfully completed!