Makefile: GDB documentation nos has its own Makefile
authorRoland Pesch <pesch@cygnus>
Wed, 7 Aug 1991 00:15:02 +0000 (00:15 +0000)
committerRoland Pesch <pesch@cygnus>
Wed, 7 Aug 1991 00:15:02 +0000 (00:15 +0000)
.Sanitize: add Makefile; recognize renamed refcard.tex (formerly gdbrc.tex)
gdbint.texinfo: add markup in "Cleanups" chapter

gdb/doc/.Sanitize
gdb/doc/Makefile [new file with mode: 0755]

index bd739fccb55885ce557bc858df1df2c996eae869..3dc09aab2b14790a6c384457f5a7719a1a066773 100644 (file)
@@ -27,13 +27,13 @@ echo Sanitizing `pwd`...
 
 Things-to-keep:
 
+Makefile
 all.m4
 amd29k.m4
 gdbinv-m.m4
 gdbinv-s.m4
 gdb.texinfo
 gdbint.texinfo
-gdbrc.tex
 gen.m4
 i80386.m4
 i960.m4
@@ -43,6 +43,7 @@ pretex.m4
 rc-cm.tex
 rc-ps.tex
 rc-pslong.tex
+refcard.tex
 sparc.m4
 threecol.tex
 vax.m4
@@ -54,7 +55,12 @@ echo Done in `pwd`.
 #
 #
 # $Log$
-# Revision 2.3  1991/08/01 22:34:55  pesch
+# Revision 2.4  1991/08/07 00:15:02  pesch
+# Makefile: GDB documentation nos has its own Makefile
+# .Sanitize: add Makefile; recognize renamed refcard.tex (formerly gdbrc.tex)
+# gdbint.texinfo: add markup in "Cleanups" chapter
+#
+# Revision 2.3  1991/08/01  22:34:55  pesch
 # *** empty log message ***
 #
 # Revision 2.2  1991/07/29  22:38:53  pesch
diff --git a/gdb/doc/Makefile b/gdb/doc/Makefile
new file mode 100755 (executable)
index 0000000..b142e3d
--- /dev/null
@@ -0,0 +1,103 @@
+##Copyright (C) 1991 Free Software Foundation, Inc.
+
+# This file is part of GDB.
+
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+# 
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+# 
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+
+# main GDB source directory
+srcdir = ..
+
+# Documentation (gdb.dvi) needs either GNU m4 or SysV m4; 
+# Berkeley/Sun don't have quite enough. 
+#M4=/usr/5bin/m4
+M4=gm4
+
+# where to find texinfo; GDB dist should include a recent one
+TEXIDIR=${srcdir}/../texinfo/fsf
+
+# where to find makeinfo, preferably one designed for texinfo-2
+MAKEINFO=makeinfo
+
+# Where is the source dir for the READLINE library?  Traditionally in .. or .
+# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
+READLINE_DIR = ${srcdir}/../readline
+
+# Main GDB manual's source files
+SFILES_DOCDIR = \
+       gdb.texinfo pretex.m4 none.m4 all.m4 gdbinv-m.m4 gdbinv-s.m4   
+
+all: gdb.info gdb.dvi refcard.dvi gdb-internals gdbint.dvi
+
+clean:
+       rm -f gdb.dvi rdl-apps.texinfo gdb-all* gdb.info* 
+       rm -f gdb-internals gdbint.?? gdbint.???
+       rm -f refcard.ps refcard.dvi rcfonts.tex refcard.log *~
+
+# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
+refcard.dvi : refcard.tex
+       rm -f rcfonts.tex; cp rc-cm.tex rcfonts.tex
+       TEXINPUTS=.:$$TEXINPUTS tex refcard.tex; rm -f refcard.log 
+
+# GDB QUICK REFERENCE (PostScript output, common PS fonts)
+refcard.ps : refcard.tex
+       rm -f rcfonts.tex; cp rc-ps.tex rcfonts.tex
+       TEXINPUTS=.:$$TEXINPUTS tex refcard.tex
+       dvips -t landscape refcard -o; rm -f refcard.dvi refcard.log
+
+# Cover file for "Readline" appendices
+rdl-apps.texinfo: ${READLINE_DIR}/inc-readline.texinfo \
+                       ${READLINE_DIR}/inc-history.texinfo
+       rm -f rdl-apps.texinfo
+       echo "@include ${READLINE_DIR}/inc-readline.texinfo" >rdl-apps.texinfo
+       echo "@include ${READLINE_DIR}/inc-history.texinfo" >>rdl-apps.texinfo
+
+# GDB MANUAL: texinfo source, created by preprocessing w/m4
+# Be sure to not create a bad gdb-all.texinfo if ${M4} is missing or aborts...
+gdb-all.texinfo: ${SFILES_DOCDIR}
+       rm -f foobus.texinfo
+       ${M4} pretex.m4 none.m4 all.m4 gdb.texinfo  >foobus.texinfo
+       rm -f gdb-all.texinfo
+       mv foobus.texinfo gdb-all.texinfo
+
+# GDB MANUAL: TeX dvi file
+gdb.dvi : gdb-all.texinfo rdl-apps.texinfo
+       TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdb-all.texinfo
+       texindex gdb-all.??
+       TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdb-all.texinfo
+       mv gdb-all.dvi gdb.dvi
+       rm -f gdb-all.?? gdb-all.???
+
+# GDB MANUAL: info file
+# We're using texinfo2, and older makeinfo's may not be able to
+# cope with all the markup.  In the meantime, we distribute the info
+# files 
+gdb.info: gdb-all.texinfo
+       ${MAKEINFO} gdb-all.texinfo
+
+# GDB INTERNALS MANUAL: TeX dvi file
+gdbint.dvi : gdbint.texinfo
+       TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdbint.texinfo
+       texindex gdbint.??
+       TEXINPUTS=${TEXIDIR}:$$TEXINPUTS tex gdbint.texinfo
+       rm -f gdbint.?? gdbint.aux gdbint.cps gdbint.fns gdbint.kys \
+               gdbint.log gdbint.pgs gdbint.toc gdbint.tps gdbint.vrs
+
+# GDB INTERNALS MANUAL: info file
+gdb-internals : gdbint.texinfo
+       ${MAKEINFO} gdbint.texinfo
+
+
+
+
This page took 0.025298 seconds and 4 git commands to generate.