gdb, gdbserver: Add missing install-dvi Makefile target

For some reason install-dvi is missing although other targets of the
same family are present. This looks like an oversight.

This enables calling 'make install-dvi' from the top-level build
directory.

Fix what looks like another oversight: include 'pdf' in 'all-doc' in
gdb/doc/Makefile.in.

Approved-By: Luis Machado <luis.machado@arm.com>
Tested-By: Luis Machado <luis.machado@arm.com>
This commit is contained in:
Christophe Lyon 2024-04-04 21:51:17 +00:00
parent ea83005a36
commit 96c1bcb38b
5 changed files with 21 additions and 4 deletions

View File

@ -2055,7 +2055,7 @@ check-headers:
done
.PHONY: check-headers
info install-info clean-info dvi pdf install-pdf html install-html: force
info install-info clean-info dvi install-dvi pdf install-pdf html install-html: force
@$(MAKE) $(FLAGS_TO_PASS) DO=$@ "DODIRS=$(SUBDIRS)" subdir_do
# Traditionally "install" depends on "all". But it may be useful

View File

@ -429,7 +429,7 @@ maintainer-clean realclean distclean: clean
.PHONY: install-info install-pdf install-html clean-info
check installcheck:
info dvi pdf html:
install-info install-pdf install-html:
install-info install-dvi install-pdf install-html:
clean-info:
# GNU Make has an annoying habit of putting *all* the Makefile variables

View File

@ -24,6 +24,7 @@ prefix = @prefix@
infodir = @infodir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
pdfdir = @pdfdir@
htmldir = @htmldir@
mandir = @mandir@
@ -87,6 +88,8 @@ SET_TEXINPUTS = \
# Files which should be generated via 'info' and installed by 'install-info'
INFO_DEPS = gdb.info stabs.info annotate.info
# Files which should be generated via 'dvi' and installed by 'install-dvi'
DVIFILES = gdb.dvi stabs.dvi refcard.dvi annotate.dvi
# Files which should be generated via 'pdf' and installed by 'install-pdf'
PDFFILES = gdb.pdf stabs.pdf refcard.pdf annotate.pdf
# Files which should be generated via 'html' and installed by 'install-html'
@ -191,7 +194,7 @@ HAVE_NATIVE_GCORE_HOST = @HAVE_NATIVE_GCORE_HOST@
all: info
info: $(INFO_DEPS)
dvi: gdb.dvi stabs.dvi refcard.dvi annotate.dvi
dvi: $(DVIFILES)
ps: gdb.ps stabs.ps refcard.ps annotate.ps
html: $(HTMLFILES)
pdf: $(PDFFILES)
@ -233,7 +236,7 @@ Doxyfile-gdb-xref: $(srcdir)/Doxyfile-gdb-xref.in
Doxyfile-gdbserver: $(srcdir)/Doxyfile-gdbserver.in
$(doxyedit) $(srcdir)/Doxyfile-gdbserver.in >Doxyfile-gdbserver
all-doc: info dvi ps # pdf
all-doc: info dvi ps pdf
diststuff: info man
rm -f gdb-cfg.texi
@ -293,6 +296,18 @@ install-html: $(HTMLFILES)
fi; \
done
dvi__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
install-dvi: $(DVIFILES)
@$(NORMAL_INSTALL)
test -z "$(dvidir)" || $(mkinstalldirs) "$(DESTDIR)$(dvidir)"
@list='$(DVIFILES)'; for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
f=$(dvi__strip_dir) \
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(dvidir)/$$f'"; \
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(dvidir)/$$f"; \
done
pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
install-pdf: $(PDFFILES)

View File

@ -105,6 +105,7 @@ INFODIRS=doc
info:
install-info:
dvi:
install-dvi:
pdf:
install-pdf:
html:

View File

@ -360,6 +360,7 @@ installcheck:
check:
info dvi pdf:
install-info:
install-dvi:
install-pdf:
html:
install-html: