(Wildcard Function): fix typo

This commit is contained in:
Roland McGrath 1996-06-22 21:21:30 +00:00
parent 63f3cf925b
commit bd88059c38

View file

@ -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))