summaryrefslogtreecommitdiff
path: root/make.texinfo
diff options
context:
space:
mode:
authorRoland McGrath <roland@redhat.com>1994-07-08 18:33:15 +0000
committerRoland McGrath <roland@redhat.com>1994-07-08 18:33:15 +0000
commit51250a676d11f807c18fab4bd2a50bba55883cc1 (patch)
tree26d20a99131f54123dd27989d8f1edde8d2cf1ae /make.texinfo
parentd2461a24094a27e982594bef823c5b4d88e7e23c (diff)
downloadgunmake-51250a676d11f807c18fab4bd2a50bba55883cc1.tar.gz
Split a shell command line in @example to avoid overfull hbox.
Diffstat (limited to 'make.texinfo')
-rw-r--r--make.texinfo3
1 files changed, 2 insertions, 1 deletions
diff --git a/make.texinfo b/make.texinfo
index c088e5f..26859de 100644
--- a/make.texinfo
+++ b/make.texinfo
@@ -2581,7 +2581,8 @@ called @file{@var{name}.d} from a C source file called @file{@var{name}.c}:
@example
@group
%.d: %.c
- $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< | sed '\''s/$*.o/& $@@/g'\'' > $@@'
+ $(SHELL) -ec '$(CC) -M $(CPPFLAGS) $< \
+ | sed '\''s/$*.o/& $@@/g'\'' > $@@'
@end group
@end example