Initial import from FreeBSD RELENG_4:
[dragonfly.git] / contrib / gdb / gdb / doc / Makefile.in
1 ##Copyright (C) 1991, 1992, 1999 Free Software Foundation, Inc.
2
3 # Makefile for GDB documentation.
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20 srcdir = @srcdir@
21 VPATH = @srcdir@
22
23 prefix = @prefix@
24
25 infodir = @infodir@
26
27 SHELL = @SHELL@
28
29 INSTALL = @INSTALL@
30 INSTALL_PROGRAM = @INSTALL_PROGRAM@
31 INSTALL_DATA = @INSTALL_DATA@
32
33 # main GDB source directory
34 gdbdir = $(srcdir)/..
35
36 # where to find texinfo; GDB dist should include a recent one
37 TEXIDIR=${gdbdir}/../texinfo
38
39 # where to find makeinfo, preferably one designed for texinfo-2
40 MAKEINFO=makeinfo
41
42 # where to find texi2roff, ditto
43 TEXI2ROFF=texi2roff
44
45 # Where is the source dir for the READLINE library doc?  
46 # Traditionally readline is in .. or .
47 READLINE_DIR = ${gdbdir}/../readline/doc
48
49 SET_TEXINPUTS = TEXINPUTS=${TEXIDIR}:.:$(srcdir):$(READLINE_DIR):$$TEXINPUTS
50
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.
55 DOC_CONFIG = all
56
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
69 #      for default:
70 REFEDITS =
71
72 # Don Knuth's TeX formatter
73 TEX = tex
74
75 # auxiliary program for sorting Texinfo indices
76 TEXINDEX = texindex
77
78 # Program to generate Postscript files from DVI files.
79 DVIPS = dvips
80
81 # Main GDB manual's source files
82 SFILES_INCLUDED = gdb-cfg.texi $(srcdir)/remote.texi
83
84 SFILES_LOCAL = $(srcdir)/gdb.texinfo GDBvn.texi $(SFILES_INCLUDED)
85
86 SFILES_DOC = $(SFILES_LOCAL) \
87                 $(READLINE_DIR)/rluser.texinfo $(READLINE_DIR)/inc-hist.texi
88
89 #### Host, target, and site specific Makefile fragments come in here.
90 ###
91
92 all install:
93
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
97 all-doc: info dvi ps
98
99 install-info: info
100         for i in *.info* ; do \
101                 $(INSTALL_DATA) $$i $(infodir)/$$i ; \
102         done
103
104 STAGESTUFF = *.info* gdb-all.texi GDBvn.texi *.ps *.dvi
105
106 # Copy the object files from a particular stage into a subdirectory.
107 stage1: force
108         -mkdir stage1
109         -mv $(STAGESTUFF) stage1
110
111 stage2: force
112         -mkdir stage2
113         -mv $(STAGESTUFF) stage2
114
115 stage3: force
116         -mkdir stage3
117         -mv $(STAGESTUFF) stage3
118
119 against=stage2
120
121 comparison: force
122         for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
123
124 de-stage1: force
125         -(cd stage1 ; mv -f * ..)
126         -rmdir stage1
127
128 de-stage2: force
129         -(cd stage2 ; mv -f * ..)
130         -rmdir stage2
131
132 de-stage3: force
133         -(cd stage3 ; mv -f * ..)
134         -rmdir stage3
135
136 # The "least clean" level of cleaning.  Get rid of files which are
137 # automatically generated files that are just intermediate files,
138
139 mostlyclean:
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
143
144 clean: mostlyclean
145         rm -f rluser.texinfo inc-hist.texi gdb-cfg.texi
146
147 distclean: clean
148         rm -f Makefile config.status
149
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.
153
154 maintainer-clean realclean: distclean
155         rm -f GDBvn.texi *.info* *.dvi *.ps
156
157 # GDB QUICK REFERENCE (dvi output)
158 refcard.dvi : refcard.tex $(REFEDITS)
159         if [ -z "$(REFEDITS)" ]; then \
160                 cp $(srcdir)/refcard.tex sedref.tex ; \
161         else \
162                 echo > tmp.sed ; \
163                 for f in "$(REFEDITS)" ; do \
164                         cat $(srcdir)/$$f >>tmp.sed ; done ; \
165                 sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex ; \
166         fi
167         $(SET_TEXINPUTS) $(TEX) sedref.tex
168         mv sedref.dvi refcard.dvi
169         rm -f sedref.log sedref.tex tmp.sed
170
171 refcard.ps : refcard.dvi
172         $(DVIPS) -t landscape -o $@ $?
173
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
178
179 # Updated atomically
180 .PRECIOUS: GDBvn.texi
181
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
185 # defined anyways).
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
190
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
193 #
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).
199
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
208         $(TEXINDEX) gdb.??
209         $(SET_TEXINPUTS) $(TEX) gdb.texinfo
210         rm -f gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
211                 gdb.tp* gdb.vr*
212
213 gdb.ps: gdb.dvi
214         $(DVIPS) -o $@ $?
215
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
221
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
232
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
235 # in main sourcedir.
236 links2roff: $(SFILES_INCLUDED)
237         if [ ! -f gdb.texinfo ]; then \
238                 ln -s $(SFILES_INCLUDED) . || \
239                 ln $(SFILES_INCLUDED)    . || \
240                 cp $(SFILES_INCLUDED)    . ; \
241         fi
242         touch links2roff
243
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
252
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 .
257
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' \
263                 -e '/^@c /d' \
264                 -e 's/{.*,,/{/' \
265                 -e 's/@ / /g' \
266                 -e 's/^@alphaenumerate/@enumerate/g' \
267                 -e 's/^@end alphaenumerate/@end enumerate/g' \
268                 $(srcdir)/gdb.texinfo | \
269         $(TEXI2ROFF) -me | \
270         sed -e 's/---/\\(em/g' \
271         >gdb.me 
272
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' \
278                 -e '/^@c /d' \
279                 -e 's/{.*,,/{/' \
280                 -e 's/@ / /g' \
281                 -e 's/^@alphaenumerate/@enumerate/g' \
282                 -e 's/^@end alphaenumerate/@end enumerate/g' \
283                 $(srcdir)/gdb.texinfo | \
284         $(TEXI2ROFF) -ms | \
285         sed -e 's/---/\\(em/g' \
286         >gdb.ms 
287
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' \
295                 -e '/^@c /d' \
296                 -e 's/{.*,,/{/' \
297                 -e '/@noindent/d' \
298                 -e 's/@ / /g' \
299                 -e 's/^@alphaenumerate/@enumerate/g' \
300                 -e 's/^@end alphaenumerate/@end enumerate/g' \
301                 $(srcdir)/gdb.texinfo | \
302         $(TEXI2ROFF) -mm | \
303         sed -e 's/---/\\(em/g' \
304         >gdb.mm 
305
306
307 # GDB INTERNALS MANUAL: TeX dvi file
308 gdbint.dvi : gdbint.texinfo
309         $(SET_TEXINPUTS) $(TEX) gdbint.texinfo
310         $(TEXINDEX) gdbint.??
311         $(SET_TEXINPUTS) $(TEX) gdbint.texinfo
312         rm -f gdbint.aux gdbint.cp* gdbint.fn* gdbint.ky* \
313                 gdbint.log gdbint.pg* gdbint.toc gdbint.tp* gdbint.vr*
314
315 gdbint.ps : gdbint.dvi
316         $(DVIPS) -o $@ $?
317
318 # GDB INTERNALS MANUAL: info file
319
320 gdbint.info: gdbint.texinfo
321         $(MAKEINFO) -o gdbint.info $(srcdir)/gdbint.texinfo
322
323 stabs.info: stabs.texinfo
324         $(MAKEINFO) -o stabs.info $(srcdir)/stabs.texinfo
325
326 # STABS DOCUMENTATION: TeX dvi file
327 stabs.dvi : stabs.texinfo
328         $(SET_TEXINPUTS) $(TEX) stabs.texinfo
329         $(TEXINDEX) stabs.??
330         $(SET_TEXINPUTS) $(TEX) stabs.texinfo
331         rm -f stabs.aux stabs.cp* stabs.fn* stabs.ky* \
332                 stabs.log stabs.pg* stabs.toc stabs.tp* stabs.vr*
333
334 stabs.ps: stabs.dvi
335         $(DVIPS) -o $@ $?
336
337 force:
338
339 Makefile: Makefile.in $(host_makefile_frag) $(target_makefile_frag) config.status
340         $(SHELL) ./config.status