binutils-gdb/gdb/doc/Makefile.in

131 lines
4.2 KiB
Makefile
Raw Normal View History

1991-11-13 20:35:19 +00:00
##Copyright (C) 1991 Free Software Foundation, Inc.
# Makefile for GDB documentation.
# 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.
1991-11-14 00:25:19 +00:00
srcdir = .
ddestdir = /usr/local
idestdir = $(ddestdir)
SHELL = /bin/sh
1991-11-13 20:35:19 +00:00
# main GDB source directory
1991-11-14 00:25:19 +00:00
gdbdir = ..
1991-11-13 20:35:19 +00:00
# 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
1991-11-14 00:25:19 +00:00
TEXIDIR=${gdbdir}/../texinfo/fsf
1991-11-13 20:35:19 +00:00
# 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}.)
1991-11-14 00:25:19 +00:00
READLINE_DIR = ${gdbdir}/../readline
1991-11-13 20:35:19 +00:00
# Main GDB manual's source files
SFILES_DOCDIR = \
gdb.texinfo pretex.m4 none.m4 all.m4 gdbinv-m.m4 gdbinv-s.m4 gdbVN.m4
1991-11-14 00:25:19 +00:00
all: gdb.info gdbint.info
#all: gdb.info gdb.dvi refcard.dvi gdb-internals gdbint.dvi
install: force
for i in *.info* ; do \
echo Installing $$i... ; \
(cp $$i $(idestdir)/info/$$i.n \
&& mv -f $(idestdir)/info/$$i.n $(idestdir)/info/$$i) \
1991-11-14 00:25:19 +00:00
|| exit 1 ; \
done
1991-11-13 20:35:19 +00:00
clean:
rm -f gdb.dvi rdl-apps.texi gdb-all* gdb.info* gdbVN.m4
1991-11-14 00:25:19 +00:00
rm -f gdb-internals gdbint.?? gdbint.??? gdbint.info
1991-11-13 20:35:19 +00:00
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
rm -f rcfonts.tex
# 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
rm -f rcfonts.tex
# Cover file for "Readline" appendices
rdl-apps.texi: ${READLINE_DIR}/inc-readline.texinfo \
${READLINE_DIR}/inc-history.texinfo
rm -f rdl-apps.texi
echo "@include ${READLINE_DIR}/inc-readline.texinfo" >rdl-apps.texi
echo "@include ${READLINE_DIR}/inc-history.texinfo" >>rdl-apps.texi
# File to record current GDB version number (copied from main dir Makefile.in)
1991-11-14 00:25:19 +00:00
gdbVN.m4 : ${gdbdir}/Makefile.in
( VER=`sed <${gdbdir}/Makefile.in -n 's/VERSION = //p'` ;\
1991-11-13 20:35:19 +00:00
echo "_define__(<_GDB_VN__>,$$VER)" > gdbVN.m4 )
# GDB MANUAL: texinfo source, created by preprocessing w/m4
# Be sure to not create a bad gdb-all.texi if ${M4} is missing or aborts...
gdb-all.texi: ${SFILES_DOCDIR}
rm -f foobus.texinfo
${M4} pretex.m4 none.m4 all.m4 gdb.texinfo >foobus.texinfo
rm -f gdb-all.texi
mv foobus.texinfo gdb-all.texi
# GDB MANUAL: TeX dvi file
gdb.dvi : gdb-all.texi rdl-apps.texi
TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdb-all.texi
texindex gdb-all.??
TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdb-all.texi
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.texi
1991-11-14 00:25:19 +00:00
$(MAKEINFO) -o gdb.info $(srcdir)/gdb-all.texi
1991-11-13 20:35:19 +00:00
# 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
1991-11-14 00:25:19 +00:00
gdb-internals: gdbint.info
1991-11-13 20:35:19 +00:00
1991-11-14 00:25:19 +00:00
gdbint.info: gdbint.texinfo
$(MAKEINFO) -o gdbint.info $(srcdir)/gdbint.texinfo
1991-11-13 20:35:19 +00:00
1991-11-14 00:25:19 +00:00
force:
1991-11-13 20:35:19 +00:00
1991-11-14 00:25:19 +00:00
Makefile: $(srcdir)/Makefile.in $(host_makefile_frag) $(target_makefile_frag)
$(SHELL) ./config.status