OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [VER_5_3/] [gdb-5.3/] [gdb/] [doc/] [Makefile.in] - Diff between revs 1182 and 1765

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 1182 Rev 1765
##Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002
##Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1999, 2000, 2002
##Free Software Foundation, Inc.
##Free Software Foundation, Inc.
# Makefile for GDB documentation.
# Makefile for GDB documentation.
# This file is part of GDB.
# This file is part of GDB.
# This program is free software; you can redistribute it and/or modify
# 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
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# (at your option) any later version.
#
#
# This program is distributed in the hope that it will be useful,
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# GNU General Public License for more details.
#
#
# You should have received a copy of the GNU General Public License
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
srcdir = @srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
VPATH = @srcdir@
prefix = @prefix@
prefix = @prefix@
infodir = @infodir@
infodir = @infodir@
htmldir = $(prefix)/html
htmldir = $(prefix)/html
SHELL = @SHELL@
SHELL = @SHELL@
LN_S = @LN_S@
LN_S = @LN_S@
INSTALL = @INSTALL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_DATA = @INSTALL_DATA@
# main GDB source directory
# main GDB source directory
gdbdir = $(srcdir)/..
gdbdir = $(srcdir)/..
# where to find texinfo; GDB dist should include a recent one
# where to find texinfo; GDB dist should include a recent one
TEXIDIR=${gdbdir}/../texinfo
TEXIDIR=${gdbdir}/../texinfo
# where to find makeinfo, preferably one designed for texinfo-2
# where to find makeinfo, preferably one designed for texinfo-2
MAKEINFO=makeinfo
MAKEINFO=makeinfo
# Note that texinfo 4.0's makeinfo --html can only generate a
# Note that texinfo 4.0's makeinfo --html can only generate a
# single file, which would be too large, so continue to use
# single file, which would be too large, so continue to use
# texi2html. -sts 2000-03-28
# texi2html. -sts 2000-03-28
MAKEHTML = texi2html
MAKEHTML = texi2html
MAKEHTMLFLAGS = -menu -split_chapter
MAKEHTMLFLAGS = -menu -split_chapter
# where to find texi2roff, ditto
# where to find texi2roff, ditto
TEXI2ROFF=texi2roff
TEXI2ROFF=texi2roff
# where to find texi2dvi, ditto
# where to find texi2dvi, ditto
TEXI2DVI=texi2dvi
TEXI2DVI=texi2dvi
# Where is the source dir for the READLINE library doc?
# Where is the source dir for the READLINE library doc?
# Traditionally readline is in .. or .
# Traditionally readline is in .. or .
READLINE_DIR = ${gdbdir}/../readline/doc
READLINE_DIR = ${gdbdir}/../readline/doc
# The GDB/MI docs come from a sibling directory ../mi
# The GDB/MI docs come from a sibling directory ../mi
GDBMI_DIR = ${gdbdir}/mi
GDBMI_DIR = ${gdbdir}/mi
SET_TEXINPUTS = \
SET_TEXINPUTS = \
   TEXINPUTS=${TEXIDIR}:.:$(srcdir):$(READLINE_DIR):$(GDBMI_DIR):$$TEXINPUTS
   TEXINPUTS=${TEXIDIR}:.:$(srcdir):$(READLINE_DIR):$(GDBMI_DIR):$$TEXINPUTS
# Files which should be generated via 'info' and installed by 'install-info'
# Files which should be generated via 'info' and installed by 'install-info'
INFO_DEPS = gdb.info gdbint.info stabs.info
INFO_DEPS = gdb.info gdbint.info stabs.info
# There may be alternate predefined collections of switches to configure
# There may be alternate predefined collections of switches to configure
# the GDB manual.  Normally this is not done in synch with the software
# the GDB manual.  Normally this is not done in synch with the software
# config system, since this choice tends to be independent; most people
# 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.
# want a doc config of `all' for a generic manual, regardless of sw config.
DOC_CONFIG = all
DOC_CONFIG = all
# This list of sed edits will edit the GDB reference card
# This list of sed edits will edit the GDB reference card
# for what fonts and what papersize to use.
# for what fonts and what papersize to use.
# By default (NO edits applied), the refcard uses:
# By default (NO edits applied), the refcard uses:
#    - Computer Modern (CM) fonts
#    - Computer Modern (CM) fonts
#    - US letter paper (8.5x11in)
#    - US letter paper (8.5x11in)
# List some of the following files for alternative fonts and paper:
# List some of the following files for alternative fonts and paper:
#  a4rc.sed     use A4 paper (297 x 210 mm)
#  a4rc.sed     use A4 paper (297 x 210 mm)
#  psrc.sed     use PostScript fonts (Karl Berry short TeX names)
#  psrc.sed     use PostScript fonts (Karl Berry short TeX names)
# lpsrc.sed     use PostScript fonts (full PostScript names in TeX)
# lpsrc.sed     use PostScript fonts (full PostScript names in TeX)
# e.g. for A4, Postscript:  REFEDITS = a4rc.sed psrc.sed
# e.g. for A4, Postscript:  REFEDITS = a4rc.sed psrc.sed
#      for A4, CM fonts:    REFEDITS = a4rc.sed
#      for A4, CM fonts:    REFEDITS = a4rc.sed
#      for US, PS fonts:    REFEDITS = psrc.sed
#      for US, PS fonts:    REFEDITS = psrc.sed
#      for default:
#      for default:
REFEDITS =
REFEDITS =
# Don Knuth's TeX formatter
# Don Knuth's TeX formatter
TEX = tex
TEX = tex
# Program to generate Postscript files from DVI files.
# Program to generate Postscript files from DVI files.
DVIPS = dvips
DVIPS = dvips
# Main GDB manual
# Main GDB manual
GDB_DOC_SOURCE_INCLUDES = \
GDB_DOC_SOURCE_INCLUDES = \
        $(srcdir)/annotate.texi \
        $(srcdir)/annotate.texi \
        $(srcdir)/fdl.texi \
        $(srcdir)/fdl.texi \
        $(srcdir)/gpl.texi \
        $(srcdir)/gpl.texi \
        $(GDBMI_DIR)/gdbmi.texinfo \
        $(GDBMI_DIR)/gdbmi.texinfo \
        $(READLINE_DIR)/rluser.texinfo \
        $(READLINE_DIR)/rluser.texinfo \
        $(READLINE_DIR)/inc-hist.texinfo
        $(READLINE_DIR)/inc-hist.texinfo
GDB_DOC_BUILD_INCLUDES = \
GDB_DOC_BUILD_INCLUDES = \
        gdb-cfg.texi \
        gdb-cfg.texi \
        GDBvn.texi
        GDBvn.texi
GDB_DOC_FILES = \
GDB_DOC_FILES = \
        $(srcdir)/gdb.texinfo \
        $(srcdir)/gdb.texinfo \
        $(GDB_DOC_SOURCE_INCLUDES) \
        $(GDB_DOC_SOURCE_INCLUDES) \
        $(GDB_DOC_BUILD_INCLUDES)
        $(GDB_DOC_BUILD_INCLUDES)
# Internals Manual
# Internals Manual
GDBINT_DOC_SOURCE_INCLUDES = \
GDBINT_DOC_SOURCE_INCLUDES = \
        $(srcdir)/fdl.texi
        $(srcdir)/fdl.texi
GDBINT_DOC_BUILD_INCLUDES = \
GDBINT_DOC_BUILD_INCLUDES = \
        gdb-cfg.texi \
        gdb-cfg.texi \
        GDBvn.texi
        GDBvn.texi
GDBINT_DOC_FILES = \
GDBINT_DOC_FILES = \
        $(srcdir)/gdbint.texinfo \
        $(srcdir)/gdbint.texinfo \
        $(GDBINT_DOC_SOURCE_INCLUDES) \
        $(GDBINT_DOC_SOURCE_INCLUDES) \
        $(GDBINT_DOC_BUILD_INCLUDES)
        $(GDBINT_DOC_BUILD_INCLUDES)
# Stabs manual: All files
# Stabs manual: All files
STABS_DOC_SOURCE_INCLUDES =
STABS_DOC_SOURCE_INCLUDES =
STABS_DOC_BUILD_INCLUDES =
STABS_DOC_BUILD_INCLUDES =
STABS_DOC_FILES = \
STABS_DOC_FILES = \
        $(srcdir)/stabs.texinfo \
        $(srcdir)/stabs.texinfo \
        $(STABS_DOC_SOURCE_INCLUDES) \
        $(STABS_DOC_SOURCE_INCLUDES) \
        $(STABS_DOC_BUILD_INCLUDES)
        $(STABS_DOC_BUILD_INCLUDES)
#### Host, target, and site specific Makefile fragments come in here.
#### Host, target, and site specific Makefile fragments come in here.
###
###
all:
all:
info: $(INFO_DEPS)
info: $(INFO_DEPS)
dvi: gdb.dvi gdbint.dvi stabs.dvi refcard.dvi
dvi: gdb.dvi gdbint.dvi stabs.dvi refcard.dvi
ps: gdb.ps gdbint.ps stabs.ps refcard.ps
ps: gdb.ps gdbint.ps stabs.ps refcard.ps
html: gdb_toc.html gdbint_toc.html stabs_toc.html
html: gdb_toc.html gdbint_toc.html stabs_toc.html
pdf: gdb.pdf gdbint.pdf stabs.pdf
pdf: gdb.pdf gdbint.pdf stabs.pdf
all-doc: info dvi ps # pdf
all-doc: info dvi ps # pdf
diststuff: info
diststuff: info
install-info: $(INFO_DEPS)
install-info: $(INFO_DEPS)
        $(SHELL) $(srcdir)/../../mkinstalldirs $(infodir)
        $(SHELL) $(srcdir)/../../mkinstalldirs $(infodir)
        @list='$(INFO_DEPS)'; \
        @list='$(INFO_DEPS)'; \
        for file in $$list; do \
        for file in $$list; do \
          if test -f $$file; then d=.; else d=$(srcdir); fi; \
          if test -f $$file; then d=.; else d=$(srcdir); fi; \
          for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
          for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
            if test -f $$d/$$ifile; then \
            if test -f $$d/$$ifile; then \
              echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \
              echo " $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile"; \
              $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
              $(INSTALL_DATA) $$d/$$ifile $(infodir)/$$ifile; \
            else : ; fi; \
            else : ; fi; \
          done; \
          done; \
        done
        done
        $(POST_INSTALL)
        $(POST_INSTALL)
        @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
        @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
          list='$(INFO_DEPS)'; \
          list='$(INFO_DEPS)'; \
          for file in $$list; do \
          for file in $$list; do \
            echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
            echo " install-info --info-dir=$(infodir) $(infodir)/$$file";\
            install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
            install-info --info-dir=$(infodir) $(infodir)/$$file || :;\
          done; \
          done; \
        else : ; fi
        else : ; fi
uninstall-info:
uninstall-info:
        $(PRE_UNINSTALL)
        $(PRE_UNINSTALL)
        @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
        @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
          ii=yes; \
          ii=yes; \
        else ii=; fi; \
        else ii=; fi; \
        list='$(INFO_DEPS)'; \
        list='$(INFO_DEPS)'; \
        for file in $$list; do \
        for file in $$list; do \
          test -z "$$ii" \
          test -z "$$ii" \
            || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \
            || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \
        done
        done
        $(NORMAL_UNINSTALL)
        $(NORMAL_UNINSTALL)
        list='$(INFO_DEPS)'; \
        list='$(INFO_DEPS)'; \
        for file in $$list; do \
        for file in $$list; do \
          (cd $(DESTDIR)$(infodir) && rm -f $$file $$file-[0-9] $$file-[0-9][0-9]); \
          (cd $(DESTDIR)$(infodir) && rm -f $$file $$file-[0-9] $$file-[0-9][0-9]); \
        done
        done
install-html: html
install-html: html
        for i in *.html ; do \
        for i in *.html ; do \
                $(INSTALL_DATA) $$i $(htmldir)/$$i ; \
                $(INSTALL_DATA) $$i $(htmldir)/$$i ; \
        done
        done
STAGESTUFF = *.info* gdb-all.texi GDBvn.texi *.ps *.dvi *.pdf
STAGESTUFF = *.info* gdb-all.texi GDBvn.texi *.ps *.dvi *.pdf
# Copy the object files from a particular stage into a subdirectory.
# Copy the object files from a particular stage into a subdirectory.
stage1: force
stage1: force
        -mkdir stage1
        -mkdir stage1
        -mv $(STAGESTUFF) stage1
        -mv $(STAGESTUFF) stage1
stage2: force
stage2: force
        -mkdir stage2
        -mkdir stage2
        -mv $(STAGESTUFF) stage2
        -mv $(STAGESTUFF) stage2
stage3: force
stage3: force
        -mkdir stage3
        -mkdir stage3
        -mv $(STAGESTUFF) stage3
        -mv $(STAGESTUFF) stage3
against=stage2
against=stage2
comparison: force
comparison: force
        for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
        for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
de-stage1: force
de-stage1: force
        -(cd stage1 ; mv -f * ..)
        -(cd stage1 ; mv -f * ..)
        -rmdir stage1
        -rmdir stage1
de-stage2: force
de-stage2: force
        -(cd stage2 ; mv -f * ..)
        -(cd stage2 ; mv -f * ..)
        -rmdir stage2
        -rmdir stage2
de-stage3: force
de-stage3: force
        -(cd stage3 ; mv -f * ..)
        -(cd stage3 ; mv -f * ..)
        -rmdir stage3
        -rmdir stage3
# GDB QUICK REFERENCE (dvi output)
# GDB QUICK REFERENCE (dvi output)
refcard.dvi : refcard.tex $(REFEDITS)
refcard.dvi : refcard.tex $(REFEDITS)
        echo > tmp.sed
        echo > tmp.sed
        for f in x $(REFEDITS) ; do \
        for f in x $(REFEDITS) ; do \
                test x$$f = xx && continue ; \
                test x$$f = xx && continue ; \
                cat $(srcdir)/$$f >>tmp.sed ; \
                cat $(srcdir)/$$f >>tmp.sed ; \
        done
        done
        sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex
        sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex
        $(SET_TEXINPUTS) $(TEX) sedref.tex
        $(SET_TEXINPUTS) $(TEX) sedref.tex
        mv sedref.dvi refcard.dvi
        mv sedref.dvi refcard.dvi
        rm -f sedref.log sedref.tex tmp.sed
        rm -f sedref.log sedref.tex tmp.sed
refcard.ps : refcard.dvi
refcard.ps : refcard.dvi
        $(DVIPS) -t landscape -o $@ $?
        $(DVIPS) -t landscape -o $@ $?
# File to record current GDB version number (copied from main dir version.in)
# File to record current GDB version number (copied from main dir version.in)
GDBvn.texi : ${gdbdir}/version.in
GDBvn.texi : ${gdbdir}/version.in
        echo "@set GDBVN `sed q $(srcdir)/../version.in`" > ./GDBvn.new
        echo "@set GDBVN `sed q $(srcdir)/../version.in`" > ./GDBvn.new
        mv GDBvn.new GDBvn.texi
        mv GDBvn.new GDBvn.texi
# Updated atomically
# Updated atomically
.PRECIOUS: GDBvn.texi
.PRECIOUS: GDBvn.texi
# Choose configuration for GDB manual (normally `all'; normally not tied into
# Choose configuration for GDB manual (normally `all'; normally not tied into
# `configure' script because most users prefer generic version of manual,
# `configure' script because most users prefer generic version of manual,
# not one for their binary config---which may not be specifically
# not one for their binary config---which may not be specifically
# defined anyways).
# defined anyways).
gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
        (test "$$LN_S" = "ln -s" && \
        (test "$$LN_S" = "ln -s" && \
          ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \
          ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \
        ln ${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
        cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
# GDB MANUAL: texinfo source, using @set/@clear/@value/@ifset/@ifclear
# GDB MANUAL: texinfo source, using @set/@clear/@value/@ifset/@ifclear
# If your texinfo or makeinfo don't support these, get a new texinfo release
# 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.
# 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
#   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,
#   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
#   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).
#   in the srcdir is up to date.  (if not, then make should build one here).
# Clean these up before each run.  Avoids a catch 22 with not being
# Clean these up before each run.  Avoids a catch 22 with not being
# able to re-generate these files (to fix a corruption) because these
# able to re-generate these files (to fix a corruption) because these
# files contain a corruption.
# files contain a corruption.
GDB_TEX_TMPS = gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
GDB_TEX_TMPS = gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
        gdb.tp* gdb.vr*
        gdb.tp* gdb.vr*
# GDB MANUAL: TeX dvi file
# GDB MANUAL: TeX dvi file
gdb.dvi: ${GDB_DOC_FILES}
gdb.dvi: ${GDB_DOC_FILES}
        if [ ! -f ./GDBvn.texi ]; then \
        if [ ! -f ./GDBvn.texi ]; then \
                (test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
                (test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
                ln $(srcdir)/GDBvn.texi . || \
                ln $(srcdir)/GDBvn.texi . || \
                cp $(srcdir)/GDBvn.texi . ; else true; fi
                cp $(srcdir)/GDBvn.texi . ; else true; fi
        rm -f $(GDB_TEX_TMPS)
        rm -f $(GDB_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/gdb.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/gdb.texinfo
gdb.ps: gdb.dvi
gdb.ps: gdb.dvi
        $(DVIPS) -o $@ $?
        $(DVIPS) -o $@ $?
gdb.pdf: ${GDB_DOC_FILES}
gdb.pdf: ${GDB_DOC_FILES}
        if [ ! -f ./GDBvn.texi ]; then \
        if [ ! -f ./GDBvn.texi ]; then \
                (test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
                (test "$$LN_S" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
                ln $(srcdir)/GDBvn.texi . || \
                ln $(srcdir)/GDBvn.texi . || \
                cp $(srcdir)/GDBvn.texi . ; else true; fi
                cp $(srcdir)/GDBvn.texi . ; else true; fi
        rm -f $(GDB_TEX_TMPS)
        rm -f $(GDB_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/gdb.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/gdb.texinfo
# GDB MANUAL: info file
# GDB MANUAL: info file
gdb.info: ${GDB_DOC_FILES}
gdb.info: ${GDB_DOC_FILES}
        $(MAKEINFO) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) \
        $(MAKEINFO) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) \
                -o gdb.info $(srcdir)/gdb.texinfo
                -o gdb.info $(srcdir)/gdb.texinfo
# GDB MANUAL: roff translations
# GDB MANUAL: roff translations
# Try to use a recent texi2roff.  v2 was put on prep in jan91.
# Try to use a recent texi2roff.  v2 was put on prep in jan91.
# If you want an index, see texi2roff doc for postprocessing
# If you want an index, see texi2roff doc for postprocessing
# and add -i to texi2roff invocations below.
# and add -i to texi2roff invocations below.
# Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
# Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
#    corresponding -e lines when later texi2roff's are current)
#    corresponding -e lines when later texi2roff's are current)
# + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
# + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
# + @c's deleted explicitly because texi2roff sees texinfo commands in them
# + @c's deleted explicitly because texi2roff sees texinfo commands in them
# + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
# + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
# + @alphaenumerate is ridiculously new, turned into @enumerate
# + @alphaenumerate is ridiculously new, turned into @enumerate
# texi2roff doesn't have a notion of include dirs, so we have to fake
# 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
# it out for gdb manual's include files---but only if not configured
# in main sourcedir.
# in main sourcedir.
links2roff: $(GDB_DOC_SOURCE_INCLUDES)
links2roff: $(GDB_DOC_SOURCE_INCLUDES)
        if [ ! -f gdb.texinfo ]; then \
        if [ ! -f gdb.texinfo ]; then \
                (test "$$LN_S" = "ln -s" && ln -s $(GDB_DOC_SOURCE_INCLUDES) .) || \
                (test "$$LN_S" = "ln -s" && ln -s $(GDB_DOC_SOURCE_INCLUDES) .) || \
                ln $(GDB_DOC_SOURCE_INCLUDES)    . || \
                ln $(GDB_DOC_SOURCE_INCLUDES)    . || \
                cp $(GDB_DOC_SOURCE_INCLUDES)    . ; \
                cp $(GDB_DOC_SOURCE_INCLUDES)    . ; \
        fi
        fi
        touch links2roff
        touch links2roff
# gdb manual suitable for [gtn]roff -me
# gdb manual suitable for [gtn]roff -me
gdb.me: $(GDB_DOC_FILES) links2roff
gdb.me: $(GDB_DOC_FILES) links2roff
        sed -e '/\\input texinfo/d' \
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@c /d' \
                -e '/^@c /d' \
                -e 's/{.*,,/{/' \
                -e 's/{.*,,/{/' \
                -e 's/@ / /g' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                $(srcdir)/gdb.texinfo | \
                $(srcdir)/gdb.texinfo | \
        $(TEXI2ROFF) -me | \
        $(TEXI2ROFF) -me | \
        sed -e 's/---/\\(em/g' \
        sed -e 's/---/\\(em/g' \
        >gdb.me
        >gdb.me
# gdb manual suitable for [gtn]roff -ms
# gdb manual suitable for [gtn]roff -ms
gdb.ms: $(GDB_DOC_FILES) links2roff
gdb.ms: $(GDB_DOC_FILES) links2roff
        sed -e '/\\input texinfo/d' \
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@c /d' \
                -e '/^@c /d' \
                -e 's/{.*,,/{/' \
                -e 's/{.*,,/{/' \
                -e 's/@ / /g' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                $(srcdir)/gdb.texinfo | \
                $(srcdir)/gdb.texinfo | \
        $(TEXI2ROFF) -ms | \
        $(TEXI2ROFF) -ms | \
        sed -e 's/---/\\(em/g' \
        sed -e 's/---/\\(em/g' \
        >gdb.ms
        >gdb.ms
# gdb manual suitable for [tn]roff -mm
# gdb manual suitable for [tn]roff -mm
# '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
# '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
#   try leaving them in
#   try leaving them in
gdb.mm: $(GDB_DOC_FILES) links2roff
gdb.mm: $(GDB_DOC_FILES) links2roff
        sed -e '/\\input texinfo/d' \
        sed -e '/\\input texinfo/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@ifinfo/,/^@end ifinfo/d' \
                -e '/^@c /d' \
                -e '/^@c /d' \
                -e 's/{.*,,/{/' \
                -e 's/{.*,,/{/' \
                -e '/@noindent/d' \
                -e '/@noindent/d' \
                -e 's/@ / /g' \
                -e 's/@ / /g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@alphaenumerate/@enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                -e 's/^@end alphaenumerate/@end enumerate/g' \
                $(srcdir)/gdb.texinfo | \
                $(srcdir)/gdb.texinfo | \
        $(TEXI2ROFF) -mm | \
        $(TEXI2ROFF) -mm | \
        sed -e 's/---/\\(em/g' \
        sed -e 's/---/\\(em/g' \
        >gdb.mm
        >gdb.mm
# GDB MANUAL: HTML file
# GDB MANUAL: HTML file
gdb_toc.html: ${GDB_DOC_FILES}
gdb_toc.html: ${GDB_DOC_FILES}
        $(MAKEHTML) $(MAKEHTMLFLAGS) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) $(srcdir)/gdb.texinfo
        $(MAKEHTML) $(MAKEHTMLFLAGS) -I ${READLINE_DIR} -I ${GDBMI_DIR} -I $(srcdir) $(srcdir)/gdb.texinfo
# Clean these up before each run.  Avoids a catch 22 with not being
# Clean these up before each run.  Avoids a catch 22 with not being
# able to re-generate these files (to fix a corruption) because these
# able to re-generate these files (to fix a corruption) because these
# files contain a corruption.
# files contain a corruption.
GDBINT_TEX_TMPS = gdbint.aux gdbint.cp* gdbint.fn* gdbint.ky* \
GDBINT_TEX_TMPS = gdbint.aux gdbint.cp* gdbint.fn* gdbint.ky* \
        gdbint.log gdbint.pg* gdbint.toc gdbint.tp* gdbint.vr*
        gdbint.log gdbint.pg* gdbint.toc gdbint.tp* gdbint.vr*
# GDB INTERNALS MANUAL: TeX dvi file
# GDB INTERNALS MANUAL: TeX dvi file
gdbint.dvi: $(GDBINT_DOC_FILES)
gdbint.dvi: $(GDBINT_DOC_FILES)
        rm -f $(GDBINT_TEX_TMPS)
        rm -f $(GDBINT_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/gdbint.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/gdbint.texinfo
gdbint.ps : gdbint.dvi
gdbint.ps : gdbint.dvi
        $(DVIPS) -o $@ $?
        $(DVIPS) -o $@ $?
gdbint.pdf: $(GDBINT_DOC_FILES)
gdbint.pdf: $(GDBINT_DOC_FILES)
        rm -f $(GDBINT_TEX_TMPS)
        rm -f $(GDBINT_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/gdbint.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/gdbint.texinfo
# GDB INTERNALS MANUAL: info file
# GDB INTERNALS MANUAL: info file
gdbint.info: $(GDBINT_DOC_FILES)
gdbint.info: $(GDBINT_DOC_FILES)
        $(MAKEINFO) -I $(srcdir) -o gdbint.info $(srcdir)/gdbint.texinfo
        $(MAKEINFO) -I $(srcdir) -o gdbint.info $(srcdir)/gdbint.texinfo
# GDB INTERNALS MANUAL: HTML file
# GDB INTERNALS MANUAL: HTML file
gdbint_toc.html: $(GDBINT_DOC_FILES)
gdbint_toc.html: $(GDBINT_DOC_FILES)
        $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/gdbint.texinfo
        $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/gdbint.texinfo
stabs.info: $(STABS_DOC_FILES)
stabs.info: $(STABS_DOC_FILES)
        $(MAKEINFO) -o stabs.info $(srcdir)/stabs.texinfo
        $(MAKEINFO) -o stabs.info $(srcdir)/stabs.texinfo
# STABS DOCUMENTATION: HTML file
# STABS DOCUMENTATION: HTML file
stabs_toc.html: $(STABS_DOC_FILES)
stabs_toc.html: $(STABS_DOC_FILES)
        $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/stabs.texinfo
        $(MAKEHTML) $(MAKEHTMLFLAGS) $(srcdir)/stabs.texinfo
# Clean these up before each run.  Avoids a catch 22 with not being
# Clean these up before each run.  Avoids a catch 22 with not being
# able to re-generate these files (to fix a corruption) because these
# able to re-generate these files (to fix a corruption) because these
# files contain a corruption.
# files contain a corruption.
STABS_TEX_TMPS = stabs.aux stabs.cp* stabs.fn* stabs.ky* \
STABS_TEX_TMPS = stabs.aux stabs.cp* stabs.fn* stabs.ky* \
        stabs.log stabs.pg* stabs.toc stabs.tp* stabs.vr*
        stabs.log stabs.pg* stabs.toc stabs.tp* stabs.vr*
# STABS DOCUMENTATION: TeX dvi file
# STABS DOCUMENTATION: TeX dvi file
stabs.dvi : $(STABS_DOC_FILES)
stabs.dvi : $(STABS_DOC_FILES)
        rm -f $(STABS_TEX_TMPS)
        rm -f $(STABS_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/stabs.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) $(srcdir)/stabs.texinfo
stabs.ps: stabs.dvi
stabs.ps: stabs.dvi
        $(DVIPS) -o $@ $?
        $(DVIPS) -o $@ $?
stabs.pdf: $(STABS_DOC_FILES)
stabs.pdf: $(STABS_DOC_FILES)
        rm -f $(STABS_TEX_TMPS)
        rm -f $(STABS_TEX_TMPS)
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/stabs.texinfo
        $(SET_TEXINPUTS) $(TEXI2DVI) --pdf $(srcdir)/stabs.texinfo
force:
force:
Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag) config.status
Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag) config.status
        $(SHELL) ./config.status
        $(SHELL) ./config.status
# The "least clean" level of cleaning.  Get rid of files which are
# The "least clean" level of cleaning.  Get rid of files which are
# automatically generated files that are just intermediate files,
# automatically generated files that are just intermediate files,
mostlyclean:
mostlyclean:
        rm -f gdb.mm gdb.ms gdb.me links2roff
        rm -f gdb.mm gdb.ms gdb.me links2roff
        rm -f $(GDB_TEX_TMPS)
        rm -f $(GDB_TEX_TMPS)
        rm -f $(GDBINT_TEX_TMPS)
        rm -f $(GDBINT_TEX_TMPS)
        rm -f $(STABS_TEX_TMPS)
        rm -f $(STABS_TEX_TMPS)
        rm -f sedref.dvi sedref.tex tmp.sed
        rm -f sedref.dvi sedref.tex tmp.sed
clean: mostlyclean
clean: mostlyclean
        rm -f gdb-cfg.texi
        rm -f gdb-cfg.texi
distclean: clean
distclean: clean
        rm -f Makefile config.status
        rm -f Makefile config.status
# GDBvn.texi, the dvi files, the info files, and the postscript files,
# 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
# are all part of the distribution, so it should not be removed by
# "clean" or "distclean".  Use maintainer-clean to remove them.
# "clean" or "distclean".  Use maintainer-clean to remove them.
maintainer-clean realclean: distclean
maintainer-clean realclean: distclean
        rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf
        rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf
install: install-info
install: install-info
uninstall: uninstall-info
uninstall: uninstall-info
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.