diff options
author | Roland McGrath <roland@redhat.com> | 1995-08-15 00:03:06 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1995-08-15 00:03:06 +0000 |
commit | 9409f5c54ac0de2780c332e48105dba49fbe0876 (patch) | |
tree | 7a006009dcdaf1ce5ef5ec7dadcff0a9344991b0 | |
parent | 78ac5bd9c71414cad7248943f28d964a63529ec3 (diff) | |
download | gunmake-9409f5c54ac0de2780c332e48105dba49fbe0876.tar.gz |
Don't suggest sending questions to bug-gnu-utils.
Use @smallexample instead of @example to avoid overfull hbox.
-rw-r--r-- | make.texinfo | 20 |
1 files changed, 6 insertions, 14 deletions
diff --git a/make.texinfo b/make.texinfo index fac34fd..94acc40 100644 --- a/make.texinfo +++ b/make.texinfo @@ -8,10 +8,10 @@ @c FSF publishers: format makebook.texi instead of using this file directly. @set RCSID $Id$ -@set EDITION 0.48 -@set VERSION 3.73 Beta -@set UPDATED 4 April 1995 -@set UPDATE-MONTH April 1995 +@set EDITION 0.49 +@set VERSION 3.74 Beta +@set UPDATED 14 August 1995 +@set UPDATE-MONTH August 1995 @comment The ISBN number might need to change on next publication. @set ISBN 1-882114-50-7 @@ -435,14 +435,6 @@ get this information with the command @samp{make --version}. Be sure also to include the type of machine and operating system you are using. If possible, include the contents of the file @file{config.h} that is generated by the configuration process. - -Non-bug suggestions are always welcome as well. If you have questions -about things that are unclear in the documentation or are just obscure -features, send a message to the bug reporting address. We cannot -guarantee you'll get help with your problem, but many seasoned -@code{make} users read the mailing list and they will probably try to -help you out. The maintainers sometimes answer such questions as well, -when time permits. @node Introduction, Makefiles, Overview, Top @comment node-name, next, previous, up @@ -2585,13 +2577,13 @@ the new dependencies. Here is the pattern rule to generate a file of dependencies (i.e., a makefile) called @file{@var{name}.d} from a C source file called @file{@var{name}.c}: -@example +@smallexample @group %.d: %.c $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \ | sed '\''s/$*\\.o[ :]*/& $@@/g'\'' > $@@' @end group -@end example +@end smallexample @noindent @xref{Pattern Rules}, for information on defining pattern rules. The |