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