2006-04-29 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
+ * doc/autoconf.texi (Limitations of Make): Clean up markup.
+
* ChangeLog: Typo.
* doc/autoconf.texi (Portable Shell): Allow wrapped URLs, for
DVI output.
@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
.SUFFIXES: .in
foo: foo.in
.in:
- cp $< $@
+ cp $< $@@
$ @kbd{touch foo.in}
$ @kbd{make}
$ @kbd{ls}
$ @kbd{cat Makefile}
.SUFFIXES: .in
.in:
- cp $< $@
+ cp $< $@@
$ @kbd{make foo}
cp foo.in foo
@end example
foo.out: foo.in
.SUFFIXES: .in .out
.in.out:
- cp $< $@
+ cp $< $@@
$ @kbd{make}
cp foo.in foo.out
@end example