From: Ralf Wildenhues Date: Sat, 29 Apr 2006 06:24:23 +0000 (+0000) Subject: * doc/autoconf.texi (Limitations of Make): Clean up markup. X-Git-Tag: AUTOCONF-2.59d~101 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85cdefd01e7c1c0b9fd64574aafcf0579804dc40;p=thirdparty%2Fautoconf.git * doc/autoconf.texi (Limitations of Make): Clean up markup. --- diff --git a/ChangeLog b/ChangeLog index 15baace93..c2f3224f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2006-04-29 Ralf Wildenhues + * doc/autoconf.texi (Limitations of Make): Clean up markup. + * ChangeLog: Typo. * doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for DVI output. diff --git a/doc/autoconf.texi b/doc/autoconf.texi index 66448a4b8..9e4f2fcf5 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -13691,7 +13691,7 @@ However the "prerequisite rewriting" still applies here. So if @command{make} will execute @smallexample -@code{cp `test -f ../pkg/src/if.c || echo ../pkg/src/`if.c f.c} +cp `test -f ../pkg/src/if.c || echo ../pkg/src/`if.c f.c @end smallexample @noindent @@ -14047,7 +14047,7 @@ $ @kbd{cat Makefile} .SUFFIXES: .in foo: foo.in .in: - cp $< $@ + cp $< $@@ $ @kbd{touch foo.in} $ @kbd{make} $ @kbd{ls} @@ -14070,7 +14070,7 @@ Note it works without the @samp{foo: foo.in} dependency. $ @kbd{cat Makefile} .SUFFIXES: .in .in: - cp $< $@ + cp $< $@@ $ @kbd{make foo} cp foo.in foo @end example @@ -14083,7 +14083,7 @@ $ @kbd{cat Makefile} foo.out: foo.in .SUFFIXES: .in .out .in.out: - cp $< $@ + cp $< $@@ $ @kbd{make} cp foo.in foo.out @end example