Fri Sep 4 18:53:57 1992 Roland H. Pesch (pesch@fowanton.cygnus.com)
[deliverable/binutils-gdb.git] / gdb / doc / Makefile
CommitLineData
73dfae8d
RP
1##Copyright (C) 1991 Free Software Foundation, Inc.
2
1c484dd7 3# Makefile for GDB documentation.
73dfae8d
RP
4# This file is part of GDB.
5
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20# main GDB source directory
21srcdir = ..
22
23# Documentation (gdb.dvi) needs either GNU m4 or SysV m4;
24# Berkeley/Sun don't have quite enough.
25#M4=/usr/5bin/m4
26M4=gm4
27
28# where to find texinfo; GDB dist should include a recent one
29TEXIDIR=${srcdir}/../texinfo/fsf
30
31# where to find makeinfo, preferably one designed for texinfo-2
32MAKEINFO=makeinfo
33
34# Where is the source dir for the READLINE library? Traditionally in .. or .
35# (For the binary library built from it, we use ${READLINE_DIR}${subdir}.)
36READLINE_DIR = ${srcdir}/../readline
37
38# Main GDB manual's source files
39SFILES_DOCDIR = \
1c484dd7 40 gdb.texinfo pretex.m4 none.m4 all.m4 gdbinv-m.m4 gdbinv-s.m4 gdbVN.m4
73dfae8d
RP
41
42all: gdb.info gdb.dvi refcard.dvi gdb-internals gdbint.dvi
43
44clean:
1c484dd7 45 rm -f gdb.dvi rdl-apps.texi gdb-all* gdb.info* gdbVN.m4
73dfae8d
RP
46 rm -f gdb-internals gdbint.?? gdbint.???
47 rm -f refcard.ps refcard.dvi rcfonts.tex refcard.log *~
48
49# GDB QUICK REFERENCE (TeX dvi file, CM fonts)
50refcard.dvi : refcard.tex
51 rm -f rcfonts.tex; cp rc-cm.tex rcfonts.tex
52 TEXINPUTS=.:$$TEXINPUTS tex refcard.tex; rm -f refcard.log
006774c4 53 rm -f rcfonts.tex
73dfae8d
RP
54
55# GDB QUICK REFERENCE (PostScript output, common PS fonts)
56refcard.ps : refcard.tex
57 rm -f rcfonts.tex; cp rc-ps.tex rcfonts.tex
58 TEXINPUTS=.:$$TEXINPUTS tex refcard.tex
59 dvips -t landscape refcard -o; rm -f refcard.dvi refcard.log
006774c4 60 rm -f rcfonts.tex
73dfae8d
RP
61
62# Cover file for "Readline" appendices
8b5d2c4e 63rdl-apps.texi: ${READLINE_DIR}/inc-readline.texinfo \
73dfae8d 64 ${READLINE_DIR}/inc-history.texinfo
8b5d2c4e
RP
65 rm -f rdl-apps.texi
66 echo "@include ${READLINE_DIR}/inc-readline.texinfo" >rdl-apps.texi
67 echo "@include ${READLINE_DIR}/inc-history.texinfo" >>rdl-apps.texi
73dfae8d 68
1c484dd7
RP
69# File to record current GDB version number (copied from main dir Makefile.in)
70gdbVN.m4 : ${srcdir}/Makefile.in
71 ( VER=`sed <${srcdir}/Makefile.in -n 's/VERSION = //p'` ;\
72 echo "_define__(<_GDB_VN__>,$$VER)" > gdbVN.m4 )
73
73dfae8d 74# GDB MANUAL: texinfo source, created by preprocessing w/m4
fad60036
RP
75# Be sure to not create a bad gdb-all.texi if ${M4} is missing or aborts...
76gdb-all.texi: ${SFILES_DOCDIR}
73dfae8d
RP
77 rm -f foobus.texinfo
78 ${M4} pretex.m4 none.m4 all.m4 gdb.texinfo >foobus.texinfo
fad60036
RP
79 rm -f gdb-all.texi
80 mv foobus.texinfo gdb-all.texi
73dfae8d
RP
81
82# GDB MANUAL: TeX dvi file
fad60036 83gdb.dvi : gdb-all.texi rdl-apps.texi
60ba9262 84 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdb-all.texi
73dfae8d 85 texindex gdb-all.??
60ba9262 86 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdb-all.texi
73dfae8d
RP
87 mv gdb-all.dvi gdb.dvi
88 rm -f gdb-all.?? gdb-all.???
89
90# GDB MANUAL: info file
91# We're using texinfo2, and older makeinfo's may not be able to
92# cope with all the markup. In the meantime, we distribute the info
93# files
fad60036
RP
94gdb.info: gdb-all.texi
95 ${MAKEINFO} gdb-all.texi
73dfae8d
RP
96
97# GDB INTERNALS MANUAL: TeX dvi file
98gdbint.dvi : gdbint.texinfo
60ba9262 99 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdbint.texinfo
73dfae8d 100 texindex gdbint.??
60ba9262 101 TEXINPUTS=${TEXIDIR}:.:$$TEXINPUTS tex gdbint.texinfo
73dfae8d
RP
102 rm -f gdbint.?? gdbint.aux gdbint.cps gdbint.fns gdbint.kys \
103 gdbint.log gdbint.pgs gdbint.toc gdbint.tps gdbint.vrs
104
105# GDB INTERNALS MANUAL: info file
106gdb-internals : gdbint.texinfo
107 ${MAKEINFO} gdbint.texinfo
108
109
110
111
This page took 0.058135 seconds and 4 git commands to generate.