From: Roland McGrath Date: Sat, 22 Jun 1996 21:21:30 +0000 (+0000) Subject: (Wildcard Function): fix typo X-Git-Tag: 3.74.5~14 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bd88059c38aad895ed27e2f39c6e4b997a367671;p=platform%2Fupstream%2Fmake.git (Wildcard Function): fix typo --- diff --git a/make.texinfo b/make.texinfo index 4e18608..9b43b48 100644 --- a/make.texinfo +++ b/make.texinfo @@ -1599,7 +1599,7 @@ $(wildcard *.c) @end example We can change the list of C source files into a list of object files by -replacing the @samp{.o} suffix with @samp{.c} in the result, like this: +replacing the @samp{.c} suffix with @samp{.o} in the result, like this: @example $(patsubst %.c,%.o,$(wildcard *.c))