]> git.ipfire.org Git - thirdparty/make.git/commitdiff
* doc/make.texi: [SV 63689] Fix typos in examples
authorDmitry Goncharov <dgoncharov@users.sf.net>
Sat, 28 Jan 2023 18:09:36 +0000 (13:09 -0500)
committerPaul Smith <psmith@gnu.org>
Sat, 28 Jan 2023 18:09:36 +0000 (13:09 -0500)
doc/make.texi

index b8cbb52ca32377f2b8d69d041d2292e783ca0fac..69b1473fc09006d510c9e3fb1e7557b7b2c2621f 100644 (file)
@@ -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