summaryrefslogtreecommitdiff
path: root/devdocs/gnu_make/running.html
diff options
context:
space:
mode:
authorCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
committerCraig Jennings <c@cjennings.net>2025-08-14 22:58:58 -0500
commit82ba818ff456bcd6d56a06226e3f27e98fbb55c3 (patch)
tree158cfc17b2f644a10f063cb546752cfaae12c97f /devdocs/gnu_make/running.html
parent9278ddd4ea1a8b1a4c1edaa8894516e3f48d245b (diff)
downloaddotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.tar.gz
dotemacs-82ba818ff456bcd6d56a06226e3f27e98fbb55c3.zip
removing all downloaded devdocs files
Diffstat (limited to 'devdocs/gnu_make/running.html')
-rw-r--r--devdocs/gnu_make/running.html47
1 files changed, 0 insertions, 47 deletions
diff --git a/devdocs/gnu_make/running.html b/devdocs/gnu_make/running.html
deleted file mode 100644
index db0926c1..00000000
--- a/devdocs/gnu_make/running.html
+++ /dev/null
@@ -1,47 +0,0 @@
- <h1 class="chapter">How to Run make</h1> <p>A makefile that says how to recompile a program can be used in more than one way. The simplest use is to recompile every file that is out of date. Usually, makefiles are written so that if you run <code>make</code> with no arguments, it does just that. </p> <p>But you might want to update only some of the files; you might want to use a different compiler or different compiler options; you might want just to find out which files are out of date without changing them. </p> <p>By giving arguments when you run <code>make</code>, you can do any of these things and many others. </p> <p>The exit status of <code>make</code> is always one of three values: </p>
-<dl compact> <dt id="0"><code>0</code></dt> <dd><p>The exit status is zero if <code>make</code> is successful. </p></dd> <dt id="2"><code>2</code></dt> <dd><p>The exit status is two if <code>make</code> encounters any errors. It will print messages describing the particular errors. </p></dd> <dt id="1"><code>1</code></dt> <dd><p>The exit status is one if you use the ‘<samp>-q</samp>’ flag and <code>make</code> determines that some target is not already up to date. See <a href="instead-of-execution">Instead of Executing Recipes</a>. </p></dd> </dl> <table class="menu" border="0" cellspacing="0"> <tr>
-<td align="left" valign="top">• <a href="makefile-arguments" accesskey="1">Makefile Arguments</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to specify which makefile to use. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="goals" accesskey="2">Goals</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to use goal arguments to specify which parts of the makefile to use. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="instead-of-execution" accesskey="3">Instead of Execution</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to use mode flags to specify what kind of thing to do with the recipes in the makefile other than simply execute them. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="avoiding-compilation" accesskey="4">Avoiding Compilation</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to avoid recompiling certain files. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="overriding" accesskey="5">Overriding</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to override a variable to specify an alternate compiler and other things. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="testing" accesskey="6">Testing</a>
-</td>
-<td> </td>
-<td align="left" valign="top">How to proceed past some errors, to test compilation. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="temporary-files" accesskey="7">Temporary Files</a>
-</td>
-<td> </td>
-<td align="left" valign="top">Where <code>make</code> keeps its temporary files. </td>
-</tr> <tr>
-<td align="left" valign="top">• <a href="options-summary" accesskey="8">Options Summary</a>
-</td>
-<td> </td>
-<td align="left" valign="top">Summary of Options </td>
-</tr> </table><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/Running.html" class="_attribution-link">https://www.gnu.org/software/make/manual/html_node/Running.html</a>
- </p>
-</div>