Add Guile as an extension language.
[platform/upstream/binutils.git] / gdb / doc / Makefile.in
1 ##Copyright (C) 1991-2014 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 3 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, see <http://www.gnu.org/licenses/>.
18
19 srcdir = @srcdir@
20 VPATH = @srcdir@
21
22 prefix = @prefix@
23
24 infodir = @infodir@
25 datarootdir = @datarootdir@
26 docdir = @docdir@
27 pdfdir = @pdfdir@
28 htmldir = @htmldir@
29 mandir = @mandir@
30 man1dir = $(mandir)/man1
31 man5dir = $(mandir)/man5
32
33 SHELL = @SHELL@
34
35 LN_S = @LN_S@
36
37 INSTALL = @INSTALL@
38 INSTALL_PROGRAM = @INSTALL_PROGRAM@
39 INSTALL_DATA = @INSTALL_DATA@
40
41 SYSTEM_GDBINIT = @SYSTEM_GDBINIT@
42
43 mkinstalldirs = $(SHELL) $(srcdir)/../../mkinstalldirs
44
45 # main GDB source directory
46 gdbdir = $(srcdir)/..
47
48 # where to find texinfo; GDB dist should include a recent one
49 TEXIDIR=${gdbdir}/../texinfo
50
51 # where to find makeinfo, preferably one designed for texinfo-2
52 MAKEINFO = @MAKEINFO@
53 MAKEINFOFLAGS = @MAKEINFOFLAGS@
54 MAKEINFO_EXTRA_FLAGS = @MAKEINFO_EXTRA_FLAGS@
55 MAKEINFO_CMD = $(MAKEINFO) $(MAKEINFOFLAGS) $(MAKEINFO_EXTRA_FLAGS)
56
57 MAKEHTML = $(MAKEINFO_CMD) --html
58 MAKEHTMLFLAGS =
59
60 # where to find texi2roff, ditto
61 TEXI2ROFF=texi2roff
62
63 # where to find texi2dvi, ditto
64 TEXI2DVI=texi2dvi
65
66 # Package version and bug-reporting URL.
67 PKGVERSION = @PKGVERSION@
68 BUGURL_TEXI = @REPORT_BUGS_TEXI@
69
70 # Where is the source dir for the READLINE library doc?  
71 # Traditionally readline is in .. or .
72 READLINE_DIR = ${gdbdir}/../readline/doc
73 READLINE_TEXI_INCFLAG = @READLINE_TEXI_INCFLAG@
74
75 # The GDB/MI docs come from a sibling directory ../mi
76 GDBMI_DIR = ${gdbdir}/mi
77
78 SET_TEXINPUTS = \
79    TEXINPUTS=${TEXIDIR}:.:$(srcdir):$(READLINE_DIR):$(GDBMI_DIR):$$TEXINPUTS
80
81 # Files which should be generated via 'info' and installed by 'install-info'
82 INFO_DEPS = gdb.info stabs.info annotate.info
83
84 # Files which should be generated via 'pdf' and installed by 'install-pdf'
85 PDFFILES = gdb.pdf stabs.pdf refcard.pdf annotate.pdf
86 # Files which should be generated via 'html' and installed by 'install-html'
87 HTMLFILES =  gdb/index.html stabs/index.html annotate/index.html
88 HTMLFILES_INSTALL = gdb stabs annotate
89
90 # There may be alternate predefined collections of switches to configure
91 # the GDB manual.  Normally this is not done in synch with the software
92 # config system, since this choice tends to be independent; most people
93 # want a doc config of `all' for a generic manual, regardless of sw config.
94 DOC_CONFIG = all
95
96 # This list of sed edits will edit the GDB reference card
97 # for what fonts and what papersize to use.
98 # By default (NO edits applied), the refcard uses:
99 #    - Computer Modern (CM) fonts
100 #    - US letter paper (8.5x11in)
101 # List some of the following files for alternative fonts and paper:
102 #  a4rc.sed     use A4 paper (297 x 210 mm)
103 #  psrc.sed     use PostScript fonts (Karl Berry short TeX names)
104 # lpsrc.sed     use PostScript fonts (full PostScript names in TeX)
105 # e.g. for A4, Postscript:  REFEDITS = a4rc.sed psrc.sed
106 #      for A4, CM fonts:    REFEDITS = a4rc.sed
107 #      for US, PS fonts:    REFEDITS = psrc.sed
108 #      for default:
109 REFEDITS =
110
111 # Don Knuth's TeX formatter
112 TEX = tex
113 PDFTEX = pdftex
114
115 # Program to generate Postscript files from DVI files.
116 DVIPS = dvips
117
118 # Main GDB manual
119 # Note that this unconditionally includes the readline texi files,
120 # even when --with-system-readline is used.  This is harmless because
121 # these are only used as dependencies.
122 GDB_DOC_SOURCE_INCLUDES = \
123         $(srcdir)/fdl.texi \
124         $(srcdir)/gpl.texi \
125         $(srcdir)/agentexpr.texi \
126         $(READLINE_DIR)/rluser.texi \
127         $(READLINE_DIR)/hsuser.texi
128 GDB_DOC_BUILD_INCLUDES = \
129         gdb-cfg.texi \
130         GDBvn.texi
131 GDB_DOC_FILES = \
132         $(srcdir)/gdb.texinfo \
133         $(srcdir)/guile.texi \
134         $(GDB_DOC_SOURCE_INCLUDES) \
135         $(GDB_DOC_BUILD_INCLUDES)
136
137 # Stabs manual: All files
138 STABS_DOC_SOURCE_INCLUDES = \
139         $(srcdir)/fdl.texi
140 STABS_DOC_BUILD_INCLUDES =
141 STABS_DOC_FILES = \
142         $(srcdir)/stabs.texinfo \
143         $(STABS_DOC_SOURCE_INCLUDES) \
144         $(STABS_DOC_BUILD_INCLUDES)
145
146 # Annotate migration document
147 ANNOTATE_DOC_SOURCE_INCLUDES = \
148         $(srcdir)/fdl.texi
149 ANNOTATE_DOC_BUILD_INCLUDES = \
150         gdb-cfg.texi \
151         GDBvn.texi
152 ANNOTATE_DOC_FILES = \
153         $(srcdir)/annotate.texinfo \
154         $(ANNOTATE_DOC_SOURCE_INCLUDES) \
155         $(ANNOTATE_DOC_BUILD_INCLUDES)
156
157 # Options to extract the man page from gdb.texinfo
158 MANCONF = -Dman
159
160 TEXI2POD = perl $(srcdir)/../../etc/texi2pod.pl \
161                 $(MAKEINFOFLAGS) $(MAKEINFO_EXTRA_FLAGS)
162
163 POD2MAN1 = pod2man --center="GNU Development Tools" \
164                    --release="gdb-`sed q version.subst`" --section=1
165 POD2MAN5 = pod2man --center="GNU Development Tools" \
166                    --release="gdb-`sed q version.subst`" --section=5
167
168 # List of man pages generated from gdb.texi
169 MAN1S = gdb.1 gdbserver.1 gcore.1
170 MAN5S = gdbinit.5
171 MANS = $(MAN1S) $(MAN5S)
172
173 # Host-dependent makefile fragment comes in here.
174 @host_makefile_frag@
175 # End of host-dependent makefile fragment
176 HAVE_NATIVE_GCORE_TARGET = @HAVE_NATIVE_GCORE_TARGET@
177
178 ###
179
180 all:
181
182 info: $(INFO_DEPS)
183 dvi: gdb.dvi stabs.dvi refcard.dvi annotate.dvi
184 ps: gdb.ps stabs.ps refcard.ps annotate.ps
185 html: $(HTMLFILES)
186 pdf: $(PDFFILES)
187 man: $(MANS)
188 all-doc: info dvi ps # pdf
189 diststuff: info man
190         rm -f gdb-cfg.texi GDBvn.texi
191
192 install-info: $(INFO_DEPS)
193         $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(infodir)
194         @list='$(INFO_DEPS)'; \
195         for file in $$list; do \
196           if test -f $$file; then d=.; else d=$(srcdir); fi; \
197           for ifile in `cd $$d && echo $$file $$file-[0-9] $$file-[0-9][0-9]`; do \
198             if test -f $$d/$$ifile; then \
199               echo " $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile"; \
200               $(INSTALL_DATA) $$d/$$ifile $(DESTDIR)$(infodir)/$$ifile; \
201             else : ; fi; \
202           done; \
203         done
204         $(POST_INSTALL)
205         @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
206           list='$(INFO_DEPS)'; \
207           for file in $$list; do \
208             echo " install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file";\
209             install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/$$file || :;\
210           done; \
211         else : ; fi
212
213 uninstall-info:
214         $(PRE_UNINSTALL)
215         @if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
216           ii=yes; \
217         else ii=; fi; \
218         list='$(INFO_DEPS)'; \
219         for file in $$list; do \
220           test -z "$$ii" \
221             || install-info --info-dir=$(DESTDIR)$(infodir) --remove $$file; \
222         done
223         $(NORMAL_UNINSTALL)
224         list='$(INFO_DEPS)'; \
225         for file in $$list; do \
226           (cd $(DESTDIR)$(infodir) && rm -f $$file $$file-[0-9] $$file-[0-9][0-9]); \
227         done
228
229 html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
230
231 install-html: $(HTMLFILES)
232         @$(NORMAL_INSTALL)
233         test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
234         @list='$(HTMLFILES_INSTALL)'; for p in $$list; do \
235           if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
236           f=$(html__strip_dir) \
237           if test -d "$$d$$p"; then \
238             echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
239             $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
240             echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
241             $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
242           else \
243             echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
244             $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
245           fi; \
246         done
247
248 pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
249
250 install-pdf: $(PDFFILES)
251         @$(NORMAL_INSTALL)
252         test -z "$(pdfdir)" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)"
253         @list='$(PDFFILES)'; for p in $$list; do \
254           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
255           f=$(pdf__strip_dir) \
256           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/$$f'"; \
257           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/$$f"; \
258         done
259
260 install-man: install-man1 install-man5
261
262 install-man1: $(MAN1S)
263         test -z "$(man1dir)" || $(mkinstalldirs) "$(DESTDIR)$(man1dir)"
264         @list='$(MAN1S)'; for p in $$list; do \
265           if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" = x \
266                   -a "$$p" = gcore.1; then \
267             continue; \
268           fi; \
269           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
270           f=`echo $$p | sed -e 's|^.*/||'`; \
271           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(man1dir)/$$f'"; \
272           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(man1dir)/$$f"; \
273         done
274
275 install-man5: $(MAN5S)
276         test -z "$(man5dir)" || $(mkinstalldirs) "$(DESTDIR)$(man5dir)"
277         @list='$(MAN5S)'; for p in $$list; do \
278           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
279           f=`echo $$p | sed -e 's|^.*/||'`; \
280           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(man5dir)/$$f'"; \
281           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(man5dir)/$$f"; \
282         done
283
284 uninstall-man: uninstall-man1 uninstall-man5
285
286 uninstall-man1:
287         @test -n "$(man1dir)" || exit 0; \
288         files=`{ l2='$(MAN1S)'; for i in $$l2; do \
289           if test "x$(HAVE_NATIVE_GCORE_TARGET)$(HAVE_NATIVE_GCORE_HOST)" = x \
290                   -a "$$i" = gcore.1; then \
291             continue; \
292           fi; \
293           echo "$$i"; \
294         done | \
295           sed -n '/\.1[a-z]*$$/p'; \
296         } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
297               -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
298         test -z "$$files" || { \
299           echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
300           cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
301
302 uninstall-man5:
303         @test -n "$(man5dir)" || exit 0; \
304         files=`{ l2='$(MAN5S)'; for i in $$l2; do echo "$$i"; done | \
305           sed -n '/\.5[a-z]*$$/p'; \
306         } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
307               -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
308         test -z "$$files" || { \
309           echo " ( cd '$(DESTDIR)$(man5dir)' && rm -f" $$files ")"; \
310           cd "$(DESTDIR)$(man5dir)" && rm -f $$files; }
311
312 STAGESTUFF = *.info* gdb-all.texi GDBvn.texi *.ps *.dvi *.pdf *.1 *.5
313
314 # Copy the object files from a particular stage into a subdirectory.
315 stage1: force
316         -mkdir stage1
317         -mv $(STAGESTUFF) stage1
318
319 stage2: force
320         -mkdir stage2
321         -mv $(STAGESTUFF) stage2
322
323 stage3: force
324         -mkdir stage3
325         -mv $(STAGESTUFF) stage3
326
327 against=stage2
328
329 comparison: force
330         for i in $(STAGESTUFF) ; do cmp $$i $(against)/$$i ; done
331
332 de-stage1: force
333         -(cd stage1 ; mv -f * ..)
334         -rmdir stage1
335
336 de-stage2: force
337         -(cd stage2 ; mv -f * ..)
338         -rmdir stage2
339
340 de-stage3: force
341         -(cd stage3 ; mv -f * ..)
342         -rmdir stage3
343
344 # GDB QUICK REFERENCE (dvi output)
345 refcard.dvi : refcard.tex $(REFEDITS)
346         echo > tmp.sed
347         for f in x $(REFEDITS) ; do \
348                 test x$$f = xx && continue ; \
349                 cat $(srcdir)/$$f >>tmp.sed ; \
350         done
351         sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex
352         $(SET_TEXINPUTS) $(TEX) sedref.tex
353         mv sedref.dvi refcard.dvi
354         rm -f sedref.log sedref.tex tmp.sed
355
356 refcard.ps : refcard.dvi
357         $(DVIPS) -t landscape -o $@ $?
358
359 refcard.pdf : refcard.tex $(REFEDITS)
360         echo > tmp.sed
361         for f in x $(REFEDITS) ; do \
362                 test x$$f = xx && continue ; \
363                 cat $(srcdir)/$$f >>tmp.sed ; \
364         done
365         sed -f tmp.sed $(srcdir)/refcard.tex >sedref.tex
366         $(SET_TEXINPUTS) $(PDFTEX) sedref.tex
367         mv sedref.pdf refcard.pdf
368         rm -f sedref.log sedref.tex tmp.sed
369
370 # File to record current GDB version number.
371 GDBvn.texi : version.subst
372         echo "@set GDBVN `sed q version.subst`" > ./GDBvn.new
373         if [ -n "$(PKGVERSION)" ]; then \
374           echo "@set VERSION_PACKAGE $(PKGVERSION)" >> ./GDBvn.new; \
375         fi
376         echo "@set BUGURL $(BUGURL_TEXI)" >> ./GDBvn.new
377         if [ "$(BUGURL_TEXI)" = "@uref{http://www.gnu.org/software/gdb/bugs/}" ]; then \
378           echo "@set BUGURL_DEFAULT" >> ./GDBvn.new; \
379         fi
380         if test -z "$(READLINE_TEXI_INCFLAG)"; then \
381           echo "@set SYSTEM_READLINE" >> ./GDBvn.new; \
382         fi
383         if [ -n "$(SYSTEM_GDBINIT)" ]; then \
384           echo "@set SYSTEM_GDBINIT $(SYSTEM_GDBINIT)" >> ./GDBvn.new; \
385         fi
386         mv GDBvn.new GDBvn.texi
387
388 version.subst: $(gdbdir)/version.in $(gdbdir)/../bfd/version.h
389         date=`sed -n -e 's/^.* BFD_VERSION_DATE \(.*\)$$/\1/p' $(gdbdir)/../bfd/version.h`; \
390         sed -e "s/DATE/$$date/" < $(gdbdir)/version.in > version.subst
391
392 # Updated atomically
393 .PRECIOUS: GDBvn.texi
394
395 # Choose configuration for GDB manual (normally `all'; normally not tied into
396 # `configure' script because most users prefer generic version of manual,
397 # not one for their binary config---which may not be specifically
398 # defined anyways).
399 gdb-cfg.texi: ${srcdir}/${DOC_CONFIG}-cfg.texi
400         (test "$(LN_S)" = "ln -s" && \
401           ln -s ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi) || \
402         ln ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi || \
403         cp ${srcdir}/${DOC_CONFIG}-cfg.texi gdb-cfg.texi
404
405 # GDB MANUAL: texinfo source, using @set/@clear/@value/@ifset/@ifclear
406 # If your texinfo or makeinfo don't support these, get a new texinfo release
407 #
408 # The nonsense with GDBvn.texi gets this to run with both Sun and GNU make.
409 #   Note that we can *generate* GDBvn.texi, but since we distribute one in the
410 #   source directory for the benefit of people who *don't* use this makefile,
411 #   VPATH will often tell make not to bother building it, because the one
412 #   in the srcdir is up to date.  (if not, then make should build one here).
413
414 # Clean these up before each run.  Avoids a catch 22 with not being
415 # able to re-generate these files (to fix a corruption) because these
416 # files contain a corruption.
417 GDB_TEX_TMPS = gdb.aux gdb.cp* gdb.fn* gdb.ky* gdb.log gdb.pg* gdb.toc \
418         gdb.tp* gdb.vr*
419
420 # GDB MANUAL: TeX dvi file
421 gdb.dvi: ${GDB_DOC_FILES}
422         if [ ! -f ./GDBvn.texi ]; then \
423                 (test "$(LN_S)" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
424                 ln $(srcdir)/GDBvn.texi . || \
425                 cp $(srcdir)/GDBvn.texi . ; else true; fi
426         rm -f $(GDB_TEX_TMPS)
427         $(TEXI2DVI) $(READLINE_TEXI_INCFLAG) -I ${GDBMI_DIR} -I $(srcdir) \
428                 $(srcdir)/gdb.texinfo
429
430 gdb.ps: gdb.dvi
431         $(DVIPS) -o $@ $?
432
433 gdb.pdf: ${GDB_DOC_FILES}
434         if [ ! -f ./GDBvn.texi ]; then \
435                 (test "$(LN_S)" = "ln -s" && ln -s $(srcdir)/GDBvn.texi .) || \
436                 ln $(srcdir)/GDBvn.texi . || \
437                 cp $(srcdir)/GDBvn.texi . ; else true; fi
438         rm -f $(GDB_TEX_TMPS)
439         $(TEXI2DVI) --pdf $(READLINE_TEXI_INCFLAG) -I ${GDBMI_DIR} -I $(srcdir) \
440                 $(srcdir)/gdb.texinfo
441
442 # GDB MANUAL: info file
443 gdb.info: ${GDB_DOC_FILES}
444         $(MAKEINFO_CMD) $(READLINE_TEXI_INCFLAG) -I ${GDBMI_DIR} -I $(srcdir) \
445                 -o gdb.info $(srcdir)/gdb.texinfo
446
447 # GDB MANUAL: roff translations
448 # Try to use a recent texi2roff.  v2 was put on prep in jan91.
449 # If you want an index, see texi2roff doc for postprocessing 
450 # and add -i to texi2roff invocations below.
451 # Workarounds for texi2roff-2 (probably fixed in later texi2roff's, delete
452 #    corresponding -e lines when later texi2roff's are current)
453 # + @ifinfo's deleted explicitly due to texi2roff-2 bug w nested constructs.
454 # + @c's deleted explicitly because texi2roff sees texinfo commands in them
455 # + @   (that's at-BLANK) not recognized by texi2roff, turned into blank
456 # + @alphaenumerate is ridiculously new, turned into @enumerate
457
458 # texi2roff doesn't have a notion of include dirs, so we have to fake 
459 # it out for gdb manual's include files---but only if not configured
460 # in main sourcedir.
461 links2roff: $(GDB_DOC_SOURCE_INCLUDES)
462         if [ ! -f gdb.texinfo ]; then \
463                 (test "$(LN_S)" = "ln -s" && ln -s $(GDB_DOC_SOURCE_INCLUDES) .) || \
464                 ln $(GDB_DOC_SOURCE_INCLUDES)    . || \
465                 cp $(GDB_DOC_SOURCE_INCLUDES)    . ; \
466         fi
467         touch links2roff
468
469 # gdb manual suitable for [gtn]roff -me
470 gdb.me: $(GDB_DOC_FILES) links2roff
471         sed -e '/\\input texinfo/d' \
472                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
473                 -e '/^@ifinfo/,/^@end ifinfo/d' \
474                 -e '/^@c /d' \
475                 -e 's/{.*,,/{/' \
476                 -e 's/@ / /g' \
477                 -e 's/^@alphaenumerate/@enumerate/g' \
478                 -e 's/^@end alphaenumerate/@end enumerate/g' \
479                 $(srcdir)/gdb.texinfo | \
480         $(TEXI2ROFF) -me | \
481         sed -e 's/---/\\(em/g' \
482         >gdb.me 
483
484 # gdb manual suitable for [gtn]roff -ms
485 gdb.ms: $(GDB_DOC_FILES) links2roff
486         sed -e '/\\input texinfo/d' \
487                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
488                 -e '/^@ifinfo/,/^@end ifinfo/d' \
489                 -e '/^@c /d' \
490                 -e 's/{.*,,/{/' \
491                 -e 's/@ / /g' \
492                 -e 's/^@alphaenumerate/@enumerate/g' \
493                 -e 's/^@end alphaenumerate/@end enumerate/g' \
494                 $(srcdir)/gdb.texinfo | \
495         $(TEXI2ROFF) -ms | \
496         sed -e 's/---/\\(em/g' \
497         >gdb.ms 
498
499 # gdb manual suitable for [tn]roff -mm
500 # '@noindent's removed due to texi2roff-2 mm bug; if yours is newer, 
501 #   try leaving them in
502 gdb.mm: $(GDB_DOC_FILES) links2roff
503         sed -e '/\\input texinfo/d' \
504                 -e '/@c TEXI2ROFF-KILL/,/@c END TEXI2ROFF-KILL/d' \
505                 -e '/^@ifinfo/,/^@end ifinfo/d' \
506                 -e '/^@c /d' \
507                 -e 's/{.*,,/{/' \
508                 -e '/@noindent/d' \
509                 -e 's/@ / /g' \
510                 -e 's/^@alphaenumerate/@enumerate/g' \
511                 -e 's/^@end alphaenumerate/@end enumerate/g' \
512                 $(srcdir)/gdb.texinfo | \
513         $(TEXI2ROFF) -mm | \
514         sed -e 's/---/\\(em/g' \
515         >gdb.mm 
516
517 # GDB MANUAL: HTML file
518
519 gdb/index.html: ${GDB_DOC_FILES}
520         $(MAKEHTML) $(MAKEHTMLFLAGS) $(READLINE_TEXI_INCFLAG) -I ${GDBMI_DIR} -I $(srcdir) $(srcdir)/gdb.texinfo
521
522 stabs.info: $(STABS_DOC_FILES)
523         $(MAKEINFO_CMD) -I $(srcdir) -o stabs.info $(srcdir)/stabs.texinfo
524
525 # STABS DOCUMENTATION: HTML file
526
527 stabs/index.html: $(STABS_DOC_FILES)
528         $(MAKEHTML) $(MAKEHTMLFLAGS) -I $(srcdir) $(srcdir)/stabs.texinfo
529
530 # Clean these up before each run.  Avoids a catch 22 with not being
531 # able to re-generate these files (to fix a corruption) because these
532 # files contain a corruption.
533 STABS_TEX_TMPS = stabs.aux stabs.cp* stabs.fn* stabs.ky* \
534         stabs.log stabs.pg* stabs.toc stabs.tp* stabs.vr*
535
536 # STABS DOCUMENTATION: TeX dvi file
537 stabs.dvi : $(STABS_DOC_FILES)
538         rm -f $(STABS_TEX_TMPS)
539         $(TEXI2DVI) -I $(srcdir) $(srcdir)/stabs.texinfo
540
541 stabs.ps: stabs.dvi
542         $(DVIPS) -o $@ $?
543
544 stabs.pdf: $(STABS_DOC_FILES)
545         rm -f $(STABS_TEX_TMPS)
546         $(TEXI2DVI) --pdf -I $(srcdir) $(srcdir)/stabs.texinfo
547
548 # Clean these up before each run.  Avoids a catch 22 with not being
549 # able to re-generate these files (to fix a corruption) because these
550 # files contain a corruption.
551 ANNOTATE_TEX_TMPS = annotate.aux annotate.cp* annotate.fn* annotate.ky* \
552         annotate.log annotate.pg* annotate.toc annotate.tp* annotate.vr*
553
554 # ANNOTATE DOCUMENTATION: TeX dvi file
555 annotate.dvi : $(ANNOTATE_DOC_FILES)
556         rm -f $(ANNOTATE_TEX_TMPS)
557         $(TEXI2DVI) -I $(srcdir) $(srcdir)/annotate.texinfo
558
559 annotate.ps: annotate.dvi
560         $(DVIPS) -o $@ $?
561
562 annotate.pdf: $(ANNOTATE_DOC_FILES)
563         rm -f $(ANNOTATE_TEX_TMPS)
564         $(TEXI2DVI) --pdf -I $(srcdir) $(srcdir)/annotate.texinfo
565
566 annotate.info: $(ANNOTATE_DOC_FILES)
567         $(MAKEINFO_CMD) -I $(srcdir) -o annotate.info $(srcdir)/annotate.texinfo
568
569 annotate/index.html: $(ANNOTATE_DOC_FILES)
570         $(MAKEHTML) $(MAKEHTMLFLAGS) -I $(srcdir) $(srcdir)/annotate.texinfo
571
572 # Man pages
573 gdb.1: $(GDB_DOC_FILES)
574         touch $@
575         -$(TEXI2POD) $(MANCONF) -Dgdb < $(srcdir)/gdb.texinfo > gdb.pod
576         -($(POD2MAN1) gdb.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
577                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
578         rm -f gdb.pod
579
580 gdbserver.1: $(GDB_DOC_FILES)
581         touch $@
582         -$(TEXI2POD) $(MANCONF) -Dgdbserver < $(srcdir)/gdb.texinfo > gdbserver.pod
583         -($(POD2MAN1) gdbserver.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
584                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
585         rm -f gdbserver.pod
586
587 gcore.1: $(GDB_DOC_FILES)
588         touch $@
589         -$(TEXI2POD) $(MANCONF) -Dgcore < $(srcdir)/gdb.texinfo > gcore.pod
590         -($(POD2MAN1) gcore.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
591                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
592         rm -f gcore.pod
593
594 gdbinit.5: $(GDB_DOC_FILES)
595         touch $@
596         -$(TEXI2POD) $(MANCONF) -Dgdbinit < $(srcdir)/gdb.texinfo > gdbinit.pod
597         -($(POD2MAN5) gdbinit.pod | sed -e '/^.if n .na/d' > $@.T$$$$ && \
598                 mv -f $@.T$$$$ $@) || (rm -f $@.T$$$$ && exit 1)
599         rm -f gdbinit.pod
600
601 force:
602
603 Makefile: Makefile.in $(host_makefile_frag) ../config.status
604         cd .. && $(SHELL) ./config.status doc/Makefile
605
606
607 # The "least clean" level of cleaning.  Get rid of files which are
608 # automatically generated files that are just intermediate files,
609
610 mostlyclean:
611         rm -f gdb.mm gdb.ms gdb.me links2roff
612         rm -f $(GDB_TEX_TMPS)
613         rm -f $(STABS_TEX_TMPS)
614         rm -f $(ANNOTATE_TEX_TMPS)
615         rm -f sedref.dvi sedref.tex tmp.sed
616         rm -f version.subst
617
618 clean: mostlyclean
619         rm -f gdb-cfg.texi GDBvn.texi
620
621 distclean: clean
622         rm -f Makefile
623
624 # GDBvn.texi, the dvi files, the info files, and the postscript files, 
625 # are all part of the distribution, so it should not be removed by
626 # "clean" or "distclean".  Use maintainer-clean to remove them.
627
628 maintainer-clean realclean: distclean
629         rm -f GDBvn.texi *.info* *.dvi *.ps *.html *.pdf $(MANS)
630
631 install: install-info install-man
632
633 uninstall: uninstall-info uninstall-man