This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/binutils-gdb.git] / gdb / doc / Makefile.in
index 806651393406ef952af68846f3c00b74a182d684..f81e58363b965139912df2fe7b194a2acbe7fb6b 100644 (file)
@@ -1,4 +1,4 @@
-##Copyright (C) 1991 Free Software Foundation, Inc.
+##Copyright (C) 1991, 1992, 1999 Free Software Foundation, Inc.
 
 # Makefile for GDB documentation.
 # This file is part of GDB.
 # 
 # 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.
-
-srcdir = .
-
-prefix = /usr/local
-
-bindir = $(prefix)/bin
-datadir = $(prefix)/lib
-libdir = $(prefix)/lib
-mandir = $(datadir)/man
-man1dir = $(mandir)/man1
-man2dir = $(mandir)/man2
-man3dir = $(mandir)/man3
-man4dir = $(mandir)/man4
-man5dir = $(mandir)/man5
-man6dir = $(mandir)/man6
-man7dir = $(mandir)/man7
-man8dir = $(mandir)/man8
-man9dir = $(mandir)/man9
-infodir = $(datadir)/info
-includedir = $(prefix)/include
-docdir = $(datadir)/doc
-
-SHELL = /bin/sh
-
-INSTALL = install -c
-INSTALL_PROGRAM = $(INSTALL)
-INSTALL_DATA = $(INSTALL)
-
-AR = ar
-AR_FLAGS = qv
-BISON = bison
-RANLIB = ranlib
+# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-#### Host, target, and site specific Makefile fragments come in here.
-###
-# main GDB source directory
-gdbdir = ..
+srcdir = @srcdir@
+VPATH = @srcdir@
+
+prefix = @prefix@
+
+infodir = @infodir@
+htmldir = $(prefix)/html
+
+SHELL = @SHELL@
+
+INSTALL = @INSTALL@
+INSTALL_PROGRAM = @INSTALL_PROGRAM@
+INSTALL_DATA = @INSTALL_DATA@
 
-# Documentation (gdb.dvi) needs either GNU m4 or SysV m4; 
-# Berkeley/Sun don't have quite enough. 
-#M4=/usr/5bin/m4
-M4=gm4
+# main GDB source directory
+gdbdir = $(srcdir)/..
 
 # where to find texinfo; GDB dist should include a recent one
-TEXIDIR=$(srcdir)/${gdbdir}/../texinfo/fsf
+TEXIDIR=${gdbdir}/../texinfo
 
 # where to find makeinfo, preferably one designed for texinfo-2
 MAKEINFO=makeinfo
 
+MAKEHTML = texi2html
+MAKEHTMLFLAGS = -glossary -menu -split_chapter
+
 # where to find texi2roff, ditto
 TEXI2ROFF=texi2roff
 
-# 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)/${gdbdir}/../readline
+# Where is the source dir for the READLINE library doc?  
+# Traditionally readline is in .. or .
+READLINE_DIR = ${gdbdir}/../readline/doc
+
+SET_TEXINPUTS = TEXINPUTS=${TEXIDIR}:.:$(srcdir):$(READLINE_DIR):$$TEXINPUTS
+
+# There may be alternate predefined collections of switches to configure
+# the GDB manual.  Normally this is not done in synch with the software
+# config system, since this choice tends to be independent; most people
+# want a doc config of `all' for a generic manual, regardless of sw config.
+DOC_CONFIG = all
+
+# This list of sed edits will edit the GDB reference card
+# for what fonts and what papersize to use.
+# By default (NO edits applied), the refcard uses:
+#    - Computer Modern (CM) fonts
+#    - US letter paper (8.5x11in)
+# List some of the following files for alternative fonts and paper:
+#  a4rc.sed     use A4 paper (297 x 210 mm)
+#  psrc.sed     use PostScript fonts (Karl Berry short TeX names)
+# lpsrc.sed     use PostScript fonts (full PostScript names in TeX)
+# e.g. for A4, Postscript:  REFEDITS = a4rc.sed psrc.sed
+#      for A4, CM fonts:    REFEDITS = a4rc.sed
+#      for US, PS fonts:    REFEDITS = psrc.sed
+#      for default:
+REFEDITS =
+
+# Don Knuth's TeX formatter
+TEX = tex
+
+# auxiliary program for sorting Texinfo indices
+TEXINDEX = texindex
+
+# Program to generate Postscript files from DVI files.
+DVIPS = dvips
 
 # Main GDB manual's source files
-SFILES_DOCDIR = \
-       $(srcdir)/gdb.texinfo $(srcdir)/pretex.m4 $(srcdir)/none.m4 \
-       $(srcdir)/all.m4 gdbinv-m.m4 gdbinv-s.m4 gdbVN.m4
+SFILES_INCLUDED = gdb-cfg.texi $(srcdir)/remote.texi
 
-# Which version of GDB manual? default includes everything
-CONFIG=all
+SFILES_LOCAL = $(srcdir)/gdb.texinfo GDBvn.texi $(SFILES_INCLUDED)
+
+SFILES_DOC = $(SFILES_LOCAL) \
+                $(READLINE_DIR)/rluser.texinfo $(READLINE_DIR)/inc-hist.texi
+
+#### Host, target, and site specific Makefile fragments come in here.
+###
 
 all install:
 
-info: gdb.info gdbint.info
-#all: gdb.info gdb.dvi refcard.dvi gdb-internals gdbint.dvi
-clean-info:
-       -rm -f *.info*
+info: gdb.info gdbint.info stabs.info
+dvi: gdb.dvi gdbint.dvi stabs.dvi refcard.dvi
+ps: gdb.ps gdbint.ps stabs.ps refcard.ps
+html: gdb_toc.html gdbint_toc.html stabs_toc.html
+all-doc: info dvi ps
 
 install-info: info
        for i in *.info* ; do \
                $(INSTALL_DATA) $$i $(infodir)/$$i ; \
        done
 
-STAGESTUFF = *.info* gdb-all.texi gdbVN.m4
+install-html: html
+       for i in *.html ; do \
+               $(INSTALL_DATA) $$i $(htmldir)/$$i ; \
+       done
+
+STAGESTUFF = *.info* gdb-all.texi GDBvn.texi *.ps *.dvi
 
 # Copy the object files from a particular stage into a subdirectory.
 stage1: force
@@ -124,74 +143,91 @@ de-stage3: force
        -(cd stage3 ; mv -f * ..)
        -rmdir stage3
 
-clean:
-       rm -f gdb.dvi rluser.texinfo inc-hist.texi gdb-all* gdb.info* gdbVN.m4
-       rm -f gdb-internals gdbint.?? gdbint.??? gdbint.info
-       rm -f refcard.ps refcard.dvi rcfonts.tex refcard.log *~
-
-# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
-refcard.dvi : $(srcdir)/refcard.tex
-       rm -f rcfonts.tex; cp $(srcdir)/rc-cm.tex rcfonts.tex
-       TEXINPUTS=$(srcdir):.:$$TEXINPUTS tex refcard.tex; rm -f refcard.log 
-       rm -f rcfonts.tex
-
-# GDB QUICK REFERENCE (PostScript output, common PS fonts)
-refcard.ps : $(srcdir)/refcard.tex
-       rm -f rcfonts.tex; cp $(srcdir)/rc-ps.tex rcfonts.tex
-       TEXINPUTS=$(srcdir):.:$$TEXINPUTS tex refcard.tex
-       dvips -t landscape refcard -o; rm -f refcard.dvi refcard.log
-       rm -f rcfonts.tex
-
-#  "Readline" appendices.  Get them here so both TeX and texi2roff can find.
-rluser.texinfo: ${READLINE_DIR}/doc/rluser.texinfo
-       ln -s ${READLINE_DIR}/doc/rluser.texinfo $(unsubdir) || \
-       ln ${READLINE_DIR}/doc/rluser.texinfo $(unsubdir) || \
-       cp ${READLINE_DIR}/doc/rluser.texinfo $(unsubdir)
-
-inc-hist.texi: ${READLINE_DIR}/doc/inc-hist.texi
-       ln -s ${READLINE_DIR}/doc/inc-hist.texi $(unsubdir) || \
-       ln ${READLINE_DIR}/doc/inc-hist.texi $(unsubdir) || \
-       cp ${READLINE_DIR}/doc/inc-hist.texi $(unsubdir)
+# The "least clean" level of cleaning.  Get rid of files which are
+# automatically generated files that are just intermediate files,
+# 
+mostlyclean:
+       rm -f gdb.mm gdb.ms gdb.me links2roff
+       rm -f *.aux *.cp* *.fn* *.ky* *.log *.pg* *.toc *.tp* *.vr*
+       rm -f sedref.dvi sedref.tex tmp.sed
+
+clean: mostlyclean
+       rm -f rluser.texinfo inc-hist.texi gdb-cfg.texi
+
+distclean: clean
+       rm -f Makefile config.status
+
+# GDBvn.texi, the dvi files, the info files, and the postscript files, 
+# are all part of the distribution, so it should not be removed by
+# "clean" or "distclean".  Use maintainer-clean to remove them.
+
+maintainer-clean realclean: distclean
+       rm -f GDBvn.texi *.info* *.dvi *.ps *.html
+
+# GDB QUICK REFERENCE (dvi output)
+refcard.dvi : refcard.tex $(REFEDITS)
+       if [ -z "$(REFEDITS)" ]; then \
+               cp $(srcdir)/refcard.tex sedref.tex ; \
+       else \
+               echo > tmp.sed ; \
+               for f in "$(REFEDITS)" ; do \
+                       cat $(srcdir)/$$f >>tmp.sed ; done ; \
+               sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex ; \
+       fi
+       $(SET_TEXINPUTS) $(TEX) sedref.tex
+       mv sedref.dvi refcard.dvi
+       rm -f sedref.log sedref.tex tmp.sed
+
+refcard.ps : refcard.dvi
+       $(DVIPS) -t landscape -o $@ $?
 
 # File to record current GDB version number (copied from main dir Makefile.in)
-gdbVN.m4 : $(srcdir)/${gdbdir}/Makefile.in
-       echo "_define__(<_GDB_VN__>,`sed <./../Makefile.in -n 's/VERSION = //p'`)" > ./gdbVN.m4
-
-# GDB MANUAL: texinfo source, created by preprocessing w/m4
-# If you want other configs in the makefile, add or modify instructions for 
-# building source here, then change CONFIG (that way you get info, dvi, 
-# roff targets automatically for your config).
-# Be sure to not create a bad gdb-all.texi if ${M4} is missing or aborts...
-# The nonsense with gdbVN.m4 is to get this to run with both Sun and GNU make.
-#   Note that we can *generate* gdbVN.m4, but since we distribute one in the
+GDBvn.texi : ${gdbdir}/Makefile.in
+       echo "@set GDBVN `sed <$(srcdir)/../Makefile.in -n 's/^VERSION *= *//p'`" > ./GDBvn.new
+       mv GDBvn.new GDBvn.texi
+
+# Updated atomically
+.PRECIOUS: GDBvn.texi
+
+# Choose configuration for GDB manual (normally `all'; normally not tied into
+# `configure' script because most users prefer generic version of manual,
+# not one for their binary config---which may not be specifically
+# defined anyways).
+gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
+       ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
+       ln ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
+       cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
+
+# GDB MANUAL: texinfo source, using @set/@clear/@value/@ifset/@ifclear
+# If your texinfo or makeinfo don't support these, get a new texinfo release
+#
+# The nonsense with GDBvn.texi gets this to run with both Sun and GNU make.
+#   Note that we can *generate* GDBvn.texi, but since we distribute one in the
 #   source directory for the benefit of people who *don't* use this makefile,
 #   VPATH will often tell make not to bother building it, because the one
 #   in the srcdir is up to date.  (if not, then make should build one here).
-gdb-all.texi: ${SFILES_DOCDIR}
-       if [ ! -f ./gdbVN.m4 ]; then \
-               ln -s $(srcdir)/gdbVN.m4 . || \
-               ln $(srcdir)/gdbVN.m4 . || \
-               cp $(srcdir)/gdbVN.m4 . ; fi
-       rm -f foobus.texinfo
-       ${M4} $(srcdir)/pretex.m4 $(srcdir)/none.m4 $(srcdir)/all.m4 \
-               gdbVN.m4 $(srcdir)/gdb.texinfo  >foobus.texinfo
-       rm -f gdb-all.texi
-       mv foobus.texinfo $(unsubdir)/gdb-all.texi
 
 # GDB MANUAL: TeX dvi file
-gdb.dvi : gdb-${CONFIG}.texi rluser.texinfo inc-hist.texi
-       TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdb-${CONFIG}.texi
-       texindex gdb-${CONFIG}.??
-       TEXINPUTS=${TEXIDIR}:.:$(srcdir):$$TEXINPUTS tex gdb-${CONFIG}.texi
-       mv gdb-${CONFIG}.dvi $(unsubdir)/gdb.dvi
-       rm -f gdb-${CONFIG}.?? gdb-${CONFIG}.???
+gdb.dvi: ${SFILES_DOC}
+       if [ ! -f ./GDBvn.texi ]; then \
+               ln -s $(srcdir)/GDBvn.texi . || \
+               ln $(srcdir)/GDBvn.texi . || \
+               cp $(srcdir)/GDBvn.texi . ; else true; fi
+       $(SET_TEXINPUTS) $(TEX) gdb.texinfo
+       $(SET_TEXINPUTS) $(TEX) gdb.texinfo
+       $(TEXINDEX) gdb.??
+       $(SET_TEXINPUTS) $(TEX) gdb.texinfo
+       rm -f gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
+               gdb.tp* gdb.vr*
+
+gdb.ps: gdb.dvi
+       $(DVIPS) -o $@ $?
 
 # 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-${CONFIG}.texi
-       $(MAKEINFO) -o $(unsubdir)/gdb.info gdb-${CONFIG}.texi
+# cope with all the markup.  
+gdb.info: ${SFILES_DOC}
+       $(MAKEINFO) -I ${READLINE_DIR} -I $(srcdir) -o ./gdb.info gdb.texinfo
 
 # GDB MANUAL: roff translations
 # Try to use a recent texi2roff.  v2 was put on prep in jan91.
@@ -204,83 +240,126 @@ gdb.info: gdb-${CONFIG}.texi
 # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
 # + @alphaenumerate is ridiculously new, turned into @enumerate
 
-
-# gdb manual suitable for [tn]roff -mm
-# '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, 
-#   try leaving them in
-# 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' \
+# texi2roff doesn't have a notion of include dirs, so we have to fake 
+# it out for gdb manual's include files---but only if not configured
+# in main sourcedir.
+links2roff: $(SFILES_INCLUDED)
+       if [ ! -f gdb.texinfo ]; then \
+               ln -s $(SFILES_INCLUDED) . || \
+               ln $(SFILES_INCLUDED)    . || \
+               cp $(SFILES_INCLUDED)    . ; \
+       fi
+       touch links2roff
+
+#  "Readline" appendices.  Get them also due to lack of includes, 
+# regardless of whether or not configuring in main sourcedir.
+# @ftable removed due to bug in texi2roff-2; if your texi2roff
+# is newer, try just ln or cp
+rluser.texinfo: ${READLINE_DIR}/rluser.texinfo
+               sed -e 's/^@ftable/@table/g' \
                -e 's/^@end ftable/@end table/g' \
-               ${READLINE_DIR}/doc/rluser.texinfo > rluser.texinfo
+               ${READLINE_DIR}/rluser.texinfo > ./rluser.texinfo
+
+inc-hist.texi: ${READLINE_DIR}/inc-hist.texi
+       ln -s ${READLINE_DIR}/inc-hist.texi . || \
+       ln ${READLINE_DIR}/inc-hist.texi . || \
+       cp ${READLINE_DIR}/inc-hist.texi .
+
+# gdb manual suitable for [gtn]roff -me
+gdb.me: $(SFILES_LOCAL) links2roff rluser.texinfo inc-hist.texi
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
-               -e '/^@c/d' \
+               -e '/^@c /d' \
                -e 's/{.*,,/{/' \
-               -e '/@noindent/d' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
-               gdb-${CONFIG}.texi | \
-       $(TEXI2ROFF) -mm | \
+               $(srcdir)/gdb.texinfo | \
+       $(TEXI2ROFF) -me | \
        sed -e 's/---/\\(em/g' \
-       >gdb.mm 
-       rm rluser.texinfo
+       >gdb.me 
 
-# gdb manual suitable for [gtn]roff -me
-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
+# gdb manual suitable for [gtn]roff -ms
+gdb.ms: $(SFILES_LOCAL) links2roff rluser.texinfo inc-hist.texi
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
-               -e '/^@c/d' \
+               -e '/^@c /d' \
                -e 's/{.*,,/{/' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
-               gdb-${CONFIG}.texi | \
-       $(TEXI2ROFF) -me | \
+               $(srcdir)/gdb.texinfo | \
+       $(TEXI2ROFF) -ms | \
        sed -e 's/---/\\(em/g' \
-       >gdb.me 
-       rm rluser.texinfo
+       >gdb.ms 
 
-# gdb manual suitable for [gtn]roff -ms
-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
+# 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: $(SFILES_LOCAL) links2roff rluser.texinfo inc-hist.texi
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
-               -e '/^@c/d' \
+               -e '/^@c /d' \
                -e 's/{.*,,/{/' \
+               -e '/@noindent/d' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
-               gdb-${CONFIG}.texi | \
-       $(TEXI2ROFF) -ms | \
+               $(srcdir)/gdb.texinfo | \
+       $(TEXI2ROFF) -mm | \
        sed -e 's/---/\\(em/g' \
-       >gdb.ms 
-       rm rluser.texinfo
+       >gdb.mm 
+
+# GDB MANUAL: HTML file
+
+gdb_toc.html: ${SFILES_DOC}
+       $(MAKEHTML) $(MAKEHTMLFLAGS) -I ${READLINE_DIR} -I $(srcdir) $(srcdir)/gdb.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
+       $(SET_TEXINPUTS) $(TEX) gdbint.texinfo
+       $(TEXINDEX) gdbint.??
+       $(SET_TEXINPUTS) $(TEX) gdbint.texinfo
+       rm -f gdbint.aux gdbint.cp* gdbint.fn* gdbint.ky* \
+               gdbint.log gdbint.pg* gdbint.toc gdbint.tp* gdbint.vr*
+
+gdbint.ps : gdbint.dvi
+       $(DVIPS) -o $@ $?
 
 # GDB INTERNALS MANUAL: info file
-gdb-internals: gdbint.info
 
 gdbint.info: gdbint.texinfo
        $(MAKEINFO) -o gdbint.info $(srcdir)/gdbint.texinfo
 
+# GDB INTERNALS MANUAL: HTML file
+
+gdbint_toc.html: gdbint.texinfo
+       $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/gdbint.texinfo
+
+stabs.info: stabs.texinfo
+       $(MAKEINFO) -o stabs.info $(srcdir)/stabs.texinfo
+
+# STABS DOCUMENTATION: HTML file
+
+stabs_toc.html: stabs.texinfo
+       $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/stabs.texinfo
+
+# STABS DOCUMENTATION: TeX dvi file
+stabs.dvi : stabs.texinfo
+       $(SET_TEXINPUTS) $(TEX) stabs.texinfo
+       $(TEXINDEX) stabs.??
+       $(SET_TEXINPUTS) $(TEX) stabs.texinfo
+       rm -f stabs.aux stabs.cp* stabs.fn* stabs.ky* \
+               stabs.log stabs.pg* stabs.toc stabs.tp* stabs.vr*
+
+stabs.ps: stabs.dvi
+       $(DVIPS) -o $@ $?
+
 force:
 
-Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
+Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag) config.status
        $(SHELL) ./config.status
This page took 0.028084 seconds and 4 git commands to generate.