1 ##Copyright (C) 1991, 1992 Free Software Foundation, Inc.
3 # Makefile for GDB documentation.
4 # This file is part of GDB.
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.
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.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
30 INSTALL_PROGRAM
= @INSTALL_PROGRAM@
31 INSTALL_DATA
= @INSTALL_DATA@
33 # main GDB source directory
36 # where to find texinfo; GDB dist should include a recent one
37 TEXIDIR
=${gdbdir}/..
/texinfo
39 # where to find makeinfo, preferably one designed for texinfo-2
42 # where to find texi2roff, ditto
45 # Where is the source dir for the READLINE library doc?
46 # Traditionally readline is in .. or .
47 READLINE_DIR
= ${gdbdir}/..
/readline
/doc
49 SET_TEXINPUTS
= TEXINPUTS
=${TEXIDIR}:.
:$(srcdir):$(READLINE_DIR
):$$TEXINPUTS
51 # There may be alternate predefined collections of switches to configure
52 # the GDB manual. Normally this is not done in synch with the software
53 # config system, since this choice tends to be independent; most people
54 # want a doc config of `all' for a generic manual, regardless of sw config.
57 # This list of sed edits will edit the GDB reference card
58 # for what fonts and what papersize to use.
59 # By default (NO edits applied), the refcard uses:
60 # - Computer Modern (CM) fonts
61 # - US letter paper (8.5x11in)
62 # List some of the following files for alternative fonts and paper:
63 # a4rc.sed use A4 paper (297 x 210 mm)
64 # psrc.sed use PostScript fonts (Karl Berry short TeX names)
65 # lpsrc.sed use PostScript fonts (full PostScript names in TeX)
66 # e.g. for A4, Postscript: REFEDITS = a4rc.sed psrc.sed
67 # for A4, CM fonts: REFEDITS = a4rc.sed
68 # for US, PS fonts: REFEDITS = psrc.sed
72 # Don Knuth's TeX formatter
75 # auxiliary program for sorting Texinfo indices
78 # Program to generate Postscript files from DVI files.
81 # Main GDB manual's source files
82 SFILES_INCLUDED
= gdb-cfg.texi
$(srcdir)/remote.texi
84 SFILES_LOCAL
= $(srcdir)/gdb.texinfo GDBvn.texi
$(SFILES_INCLUDED
)
86 SFILES_DOC
= $(SFILES_LOCAL
) \
87 $(READLINE_DIR
)/rluser.texinfo
$(READLINE_DIR
)/inc-hist.texi
89 #### Host, target, and site specific Makefile fragments come in here.
94 info: gdb.
info gdbint.
info stabs.
info
95 dvi: gdb.
dvi gdbint.
dvi stabs.
dvi refcard.
dvi
96 ps
: gdb.ps gdbint.ps stabs.ps refcard.ps
100 for i in
*.
info* ; do \
101 $(INSTALL_DATA
) $$i $(infodir)/$$i ; \
104 STAGESTUFF
= *.
info* gdb-all.texi GDBvn.texi
*.ps
*.
dvi
106 # Copy the object files from a particular stage into a subdirectory.
109 -mv
$(STAGESTUFF
) stage1
113 -mv
$(STAGESTUFF
) stage2
117 -mv
$(STAGESTUFF
) stage3
122 for i in
$(STAGESTUFF
) ; do cmp
$$i $(against
)/$$i ; done
125 -(cd stage1
; mv
-f
* ..
)
129 -(cd stage2
; mv
-f
* ..
)
133 -(cd stage3
; mv
-f
* ..
)
136 # The "least clean" level of cleaning. Get rid of files which are
137 # automatically generated files that are just intermediate files,
140 rm -f gdb.mm gdb.ms gdb.me links2roff
141 rm -f
*.aux
*.cp
* *.fn
* *.ky
* *.log
*.pg
* *.toc
*.tp
* *.vr
*
142 rm -f sedref.
dvi sedref.
tex tmp.sed
145 rm -f rluser.texinfo inc-hist.texi gdb-cfg.texi
148 rm -f Makefile config.status
150 # GDBvn.texi, the dvi files, the info files, and the postscript files,
151 # are all part of the distribution, so it should not be removed by
152 # "clean" or "distclean". Use maintainer-clean to remove them.
154 maintainer-clean
realclean: distclean
155 rm -f GDBvn.texi
*.
info* *.
dvi *.ps
157 # GDB QUICK REFERENCE (dvi output)
158 refcard.
dvi : refcard.
tex $(REFEDITS
)
159 if
[ -z
"$(REFEDITS)" ]; then \
160 cp
$(srcdir)/refcard.
tex sedref.
tex ; \
163 for f in
"$(REFEDITS)" ; do \
164 cat
$(srcdir)/$$f >>tmp.sed
; done
; \
165 sed
-f tmp.sed
$(srcdir)/refcard.
tex >sedref.
tex ; \
167 $(SET_TEXINPUTS
) $(TEX
) sedref.
tex
168 mv sedref.
dvi refcard.
dvi
169 rm -f sedref.log sedref.
tex tmp.sed
171 refcard.ps
: refcard.
dvi
172 $(DVIPS
) -t landscape
-o
$@
$?
174 # File to record current GDB version number (copied from main dir Makefile.in)
175 GDBvn.texi
: ${gdbdir}/Makefile.in
176 echo
"@set GDBVN `sed <$(srcdir)/../Makefile.in -n 's/VERSION = //p'`" > .
/GDBvn.new
177 mv GDBvn.new GDBvn.texi
180 .PRECIOUS
: GDBvn.texi
182 # Choose configuration for GDB manual (normally `all'; normally not tied into
183 # `configure' script because most users prefer generic version of manual,
184 # not one for their binary config---which may not be specifically
186 gdb-cfg.texi
: ${srcdir}/${DOC_CONFIG}-cfg.texi
187 ln
-s
${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
188 ln
${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
189 cp
${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
191 # GDB MANUAL: texinfo source, using @set/@clear/@value/@ifset/@ifclear
192 # If your texinfo or makeinfo don't support these, get a new texinfo release
194 # The nonsense with GDBvn.texi gets this to run with both Sun and GNU make.
195 # Note that we can *generate* GDBvn.texi, but since we distribute one in the
196 # source directory for the benefit of people who *don't* use this makefile,
197 # VPATH will often tell make not to bother building it, because the one
198 # in the srcdir is up to date. (if not, then make should build one here).
200 # GDB MANUAL: TeX dvi file
201 gdb.
dvi: ${SFILES_DOC}
202 if
[ ! -f .
/GDBvn.texi
]; then \
203 ln
-s
$(srcdir)/GDBvn.texi . || \
204 ln
$(srcdir)/GDBvn.texi . || \
205 cp
$(srcdir)/GDBvn.texi .
; else true
; fi
206 $(SET_TEXINPUTS
) $(TEX
) gdb.texinfo
207 $(SET_TEXINPUTS
) $(TEX
) gdb.texinfo
209 $(SET_TEXINPUTS
) $(TEX
) gdb.texinfo
210 rm -f gdb.aux gdb.cp
* gdb.fn
* gdb.ky
* gdb.log gdb.pg
* gdb.toc \
216 # GDB MANUAL: info file
217 # We're using texinfo2, and older makeinfo's may not be able to
218 # cope with all the markup.
219 gdb.
info: ${SFILES_DOC}
220 $(MAKEINFO
) -I
${READLINE_DIR} -I
$(srcdir) -o .
/gdb.
info gdb.texinfo
222 # GDB MANUAL: roff translations
223 # Try to use a recent texi2roff. v2 was put on prep in jan91.
224 # If you want an index, see texi2roff doc for postprocessing
225 # and add -i to texi2roff invocations below.
226 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
227 # corresponding -e lines when later texi2roff's are current)
228 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
229 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
230 # + @ (that's at-BLANK) not recognized by texi2roff, turned into blank
231 # + @alphaenumerate is ridiculously new, turned into @enumerate
233 # texi2roff doesn't have a notion of include dirs, so we have to fake
234 # it out for gdb manual's include files---but only if not configured
236 links2roff
: $(SFILES_INCLUDED
)
237 if
[ ! -f gdb.texinfo
]; then \
238 ln
-s
$(SFILES_INCLUDED
) . || \
239 ln
$(SFILES_INCLUDED
) . || \
240 cp
$(SFILES_INCLUDED
) .
; \
244 # "Readline" appendices. Get them also due to lack of includes,
245 # regardless of whether or not configuring in main sourcedir.
246 # @ftable removed due to bug in texi2roff-2; if your texi2roff
247 # is newer, try just ln or cp
248 rluser.texinfo
: ${READLINE_DIR}/rluser.texinfo
249 sed
-e
's/^@ftable/@table/g' \
250 -e
's/^@end ftable/@end table/g' \
251 ${READLINE_DIR}/rluser.texinfo
> .
/rluser.texinfo
253 inc-hist.texi
: ${READLINE_DIR}/inc-hist.texi
254 ln
-s
${READLINE_DIR}/inc-hist.texi . || \
255 ln
${READLINE_DIR}/inc-hist.texi . || \
256 cp
${READLINE_DIR}/inc-hist.texi .
258 # gdb manual suitable for [gtn]roff -me
259 gdb.me
: $(SFILES_LOCAL
) links2roff rluser.texinfo inc-hist.texi
260 sed
-e
'/\\input texinfo/d' \
261 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
262 -e
'/^@ifinfo/,/^@end ifinfo/d' \
266 -e
's/^@alphaenumerate/@enumerate/g' \
267 -e
's/^@end alphaenumerate/@end enumerate/g' \
268 $(srcdir)/gdb.texinfo | \
270 sed
-e
's/---/\\(em/g' \
273 # gdb manual suitable for [gtn]roff -ms
274 gdb.ms
: $(SFILES_LOCAL
) links2roff rluser.texinfo inc-hist.texi
275 sed
-e
'/\\input texinfo/d' \
276 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
277 -e
'/^@ifinfo/,/^@end ifinfo/d' \
281 -e
's/^@alphaenumerate/@enumerate/g' \
282 -e
's/^@end alphaenumerate/@end enumerate/g' \
283 $(srcdir)/gdb.texinfo | \
285 sed
-e
's/---/\\(em/g' \
288 # gdb manual suitable for [tn]roff -mm
289 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer,
290 # try leaving them in
291 gdb.mm
: $(SFILES_LOCAL
) links2roff rluser.texinfo inc-hist.texi
292 sed
-e
'/\\input texinfo/d' \
293 -e
'/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
294 -e
'/^@ifinfo/,/^@end ifinfo/d' \
299 -e
's/^@alphaenumerate/@enumerate/g' \
300 -e
's/^@end alphaenumerate/@end enumerate/g' \
301 $(srcdir)/gdb.texinfo | \
303 sed
-e
's/---/\\(em/g' \
306 # start-sanitize-gdbtk
307 # GDB GUI MANUAL: TeX dvi file
308 gdbgui.
dvi : gdbgui.texinfo
${SFILES_DOC}
309 $(SET_TEXINPUTS
) $(TEX
) gdbgui.texinfo
310 $(TEXINDEX
) gdbgui.??
311 $(SET_TEXINPUTS
) $(TEX
) gdbgui.texinfo
312 rm -f gdbgui.aux gdbgui.cp
* gdbgui.fn
* gdbgui.ky
* \
313 gdbgui.log gdbgui.pg
* gdbgui.toc gdbgui.tp
* gdbgui.vr
*
315 # GDB GUI MANUAL: info file
318 gdbgui.
info: gdbgui.texinfo
${SFILES_DOC}
319 $(MAKEINFO
) -o gdbgui.
info $(srcdir)/gdbgui.texinfo
322 # GDB INTERNALS MANUAL: TeX dvi file
323 gdbint.
dvi : gdbint.texinfo
324 $(SET_TEXINPUTS
) $(TEX
) gdbint.texinfo
325 $(TEXINDEX
) gdbint.??
326 $(SET_TEXINPUTS
) $(TEX
) gdbint.texinfo
327 rm -f gdbint.aux gdbint.cp
* gdbint.fn
* gdbint.ky
* \
328 gdbint.log gdbint.pg
* gdbint.toc gdbint.tp
* gdbint.vr
*
330 gdbint.ps
: gdbint.
dvi
333 # GDB INTERNALS MANUAL: info file
335 gdbint.
info: gdbint.texinfo
336 $(MAKEINFO
) -o gdbint.
info $(srcdir)/gdbint.texinfo
338 stabs.
info: stabs.texinfo
339 $(MAKEINFO
) -o stabs.
info $(srcdir)/stabs.texinfo
341 # STABS DOCUMENTATION: TeX dvi file
342 stabs.
dvi : stabs.texinfo
343 $(SET_TEXINPUTS
) $(TEX
) stabs.texinfo
345 $(SET_TEXINPUTS
) $(TEX
) stabs.texinfo
346 rm -f stabs.aux stabs.cp
* stabs.fn
* stabs.ky
* \
347 stabs.log stabs.pg
* stabs.toc stabs.tp
* stabs.vr
*
354 Makefile
: Makefile.in
$(host_makefile_frag
) $(target_makefile_frag
) config.status
355 $(SHELL
) .
/config.status