diff options
author | Paul Smith <psmith@gnu.org> | 2005-02-16 05:03:42 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2005-02-16 05:03:42 +0000 |
commit | e8ca9b8eb1caaa43703f6ce505af78c6e7b9e60b (patch) | |
tree | 06c563611aef3116a6f2de2844082f4609982039 /doc/make.texi | |
parent | c90f47e8320b41e3a5bfeb654543d9474f763e5d (diff) | |
download | gunmake-e8ca9b8eb1caaa43703f6ce505af78c6e7b9e60b.tar.gz |
Add a patch from Paul Eggert that's been lying around in my directory for
a long time, disabling stack size limits where possible.
Update version to beta2.
Diffstat (limited to 'doc/make.texi')
-rw-r--r-- | doc/make.texi | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/make.texi b/doc/make.texi index 8c367ba..9b6f9d8 100644 --- a/doc/make.texi +++ b/doc/make.texi @@ -2423,8 +2423,10 @@ prog3 : prog3.o sort.o utils.o @end example @noindent -Now you can say just @samp{make} to remake all three programs, or specify -as arguments the ones to remake (as in @samp{make prog1 prog3}). +Now you can say just @samp{make} to remake all three programs, or +specify as arguments the ones to remake (as in @samp{make prog1 +prog3}). Phoniness is not inherited: the prerequisites of a phony +target are not themselves phony, unless explicitly declared to be so. When one phony target is a prerequisite of another, it serves as a subroutine of the other. For example, here @samp{make cleanall} will delete the |