diff options
author | Roland McGrath <roland@redhat.com> | 1996-06-22 21:21:30 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1996-06-22 21:21:30 +0000 |
commit | bd88059c38aad895ed27e2f39c6e4b997a367671 (patch) | |
tree | 48f6e11b878eddacd8ad3207a18c058e13a08248 /make.texinfo | |
parent | 63f3cf925bcaa8ea3bcfa63800bc52d581c40bcc (diff) | |
download | gunmake-bd88059c38aad895ed27e2f39c6e4b997a367671.tar.gz |
(Wildcard Function): fix typo
Diffstat (limited to 'make.texinfo')
-rw-r--r-- | make.texinfo | 2 |
1 files changed, 1 insertions, 1 deletions
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)) |