From f21cd822a3a196e70eb6a3a515a63cc7dfd2f24c Mon Sep 17 00:00:00 2001 From: Dmitry Goncharov Date: Sat, 28 Jan 2023 13:09:36 -0500 Subject: * doc/make.texi: [SV 63689] Fix typos in examples --- doc/make.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc') 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 -- cgit v1.2.1