From 5f92dab820b725ae87317128cdef87392fdd607a Mon Sep 17 00:00:00 2001 From: Roland Pesch Date: Tue, 10 Dec 1991 02:42:26 +0000 Subject: [PATCH] Massage new readline appendix so texi2roff can understand markup (text uses new @ftable command which texi2roff-2 doesn't grok) for gdb.mm, gdb.me, gdb.ms targets --- gdb/doc/Makefile.in | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/gdb/doc/Makefile.in b/gdb/doc/Makefile.in index ffc6b6f3f5c..abc1a04cdf1 100644 --- a/gdb/doc/Makefile.in +++ b/gdb/doc/Makefile.in @@ -208,7 +208,11 @@ gdb.info: gdb-${CONFIG}.texi # gdb manual suitable for [tn]roff -mm # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, # try leaving them in -gdb.mm: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi +# ditto special treatment of @ftable in rluser.texinfo +gdb.mm: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi + sed -e 's/^@ftable/@table/g' \ + -e 's/^@end ftable/@end table/g' \ + ${READLINE_DIR}/doc/rluser.texinfo > rluser.texinfo sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ @@ -222,9 +226,13 @@ gdb.mm: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi $(TEXI2ROFF) -mm | \ sed -e 's/---/\\(em/g' \ >gdb.mm + rm rluser.texinfo # gdb manual suitable for [gtn]roff -me -gdb.me: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi +gdb.me: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi + sed -e 's/^@ftable/@table/g' \ + -e 's/^@end ftable/@end table/g' \ + ${READLINE_DIR}/doc/rluser.texinfo > rluser.texinfo sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ @@ -237,9 +245,13 @@ gdb.me: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi $(TEXI2ROFF) -me | \ sed -e 's/---/\\(em/g' \ >gdb.me + rm rluser.texinfo # gdb manual suitable for [gtn]roff -ms -gdb.ms: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi +gdb.ms: gdb-${CONFIG}.texi ${READLINE_DIR}/doc/rluser.texinfo inc-hist.texi + sed -e 's/^@ftable/@table/g' \ + -e 's/^@end ftable/@end table/g' \ + ${READLINE_DIR}/doc/rluser.texinfo > rluser.texinfo sed -e '/\\input texinfo/d' \ -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \ -e '/^@ifinfo/,/^@end ifinfo/d' \ @@ -252,6 +264,7 @@ gdb.ms: gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi $(TEXI2ROFF) -ms | \ sed -e 's/---/\\(em/g' \ >gdb.ms + rm rluser.texinfo # GDB INTERNALS MANUAL: TeX dvi file gdbint.dvi : gdbint.texinfo -- 2.30.2