diff options
author | Roland McGrath <roland@redhat.com> | 1994-07-08 18:33:15 +0000 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 1994-07-08 18:33:15 +0000 |
commit | 51250a676d11f807c18fab4bd2a50bba55883cc1 (patch) | |
tree | 26d20a99131f54123dd27989d8f1edde8d2cf1ae | |
parent | d2461a24094a27e982594bef823c5b4d88e7e23c (diff) | |
download | gunmake-51250a676d11f807c18fab4bd2a50bba55883cc1.tar.gz |
Split a shell command line in @example to avoid overfull hbox.
-rw-r--r-- | make.texinfo | 3 |
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 |