summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Goncharov <dgoncharov@users.sf.net>2023-01-28 13:09:36 -0500
committerPaul Smith <psmith@gnu.org>2023-01-28 13:09:36 -0500
commitf21cd822a3a196e70eb6a3a515a63cc7dfd2f24c (patch)
treeaedd414fdc32516258da15760a91ff353e58fa8e
parent2f336608d814d20d77b192b263e98af319972876 (diff)
downloadmake-git-f21cd822a3a196e70eb6a3a515a63cc7dfd2f24c.tar.gz
* doc/make.texi: [SV 63689] Fix typos in examples
-rw-r--r--doc/make.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/make.texi b/doc/make.texi
index b8cbb52c..69b1473f 100644
--- a/doc/make.texi
+++ b/doc/make.texi
@@ -11529,7 +11529,7 @@ rules by adding these lines to your makefile:
@example
(%) : % ;
-%.a : ; $(AR) $(ARFLAGS) $@ $?
+%.a : ; $(AR) $(ARFLAGS) $@@ $?
@end example
The first line changes the rule that updates an individual object in the
@@ -11548,7 +11548,7 @@ If you prefer to write an explicit rule you can use:
@example
libfoo.a: libfoo.a(x.o y.o @dots{})
- $(AR) $(ARFLAGS) $@ $?
+ $(AR) $(ARFLAGS) $@@ $?
@end example
@node Archive Suffix Rules, , Archive Pitfalls, Archives