diff options
author | Eric Gallager <egallager@gcc.gnu.org> | 2021-10-22 15:24:15 -0700 |
---|---|---|
committer | Eric Gallager <egallager@gcc.gnu.org> | 2021-10-22 15:43:50 -0700 |
commit | c3e80a16af287e804b87b8015307085399755cd4 (patch) | |
tree | a289ca322d3ef7a15b6989d3ef88fac6febc8ed8 /libcpp | |
parent | 47d4899183b7dc5f39b536045e2b0741d4482aee (diff) | |
download | gcc-c3e80a16af287e804b87b8015307085399755cd4.zip gcc-c3e80a16af287e804b87b8015307085399755cd4.tar.gz gcc-c3e80a16af287e804b87b8015307085399755cd4.tar.bz2 |
Add install-dvi Makefile targets.
Closes #102663
ChangeLog:
PR other/102663
* Makefile.def: Handle install-dvi target.
* Makefile.tpl: Likewise.
* Makefile.in: Regenerate.
c++tools/ChangeLog:
PR other/102663
* Makefile.in: Add dummy install-dvi target.
gcc/ChangeLog:
PR other/102663
* Makefile.in: Handle dvidir and install-dvi target.
* configure: Regenerate.
* configure.ac: Add install-dvi to target_list.
gcc/ada/ChangeLog:
PR other/102663
* gcc-interface/Make-lang.in: Allow dvi-formatted
documentation to be installed.
gcc/c/ChangeLog:
PR other/102663
* Make-lang.in: Add dummy c.install-dvi target.
gcc/cp/ChangeLog:
PR other/102663
* Make-lang.in: Add dummy c++.install-dvi target.
gcc/d/ChangeLog:
PR other/102663
* Make-lang.in: Allow dvi-formatted documentation
to be installed.
gcc/fortran/ChangeLog:
PR other/102663
* Make-lang.in: Allow dvi-formatted documentation
to be installed.
gcc/lto/ChangeLog:
PR other/102663
* Make-lang.in: Add dummy lto.install-dvi target.
gcc/objc/ChangeLog:
PR other/102663
* Make-lang.in: Add dummy objc.install-dvi target.
gcc/objcp/ChangeLog:
PR other/102663
* Make-lang.in: Add dummy objc++.install-dvi target.
gnattools/ChangeLog:
PR other/102663
* Makefile.in: Add dummy install-dvi target.
libada/ChangeLog:
PR other/102663
* Makefile.in: Add dummy install-dvi target.
libcpp/ChangeLog:
PR other/102663
* Makefile.in: Add dummy install-dvi target.
libdecnumber/ChangeLog:
PR other/102663
* Makefile.in: Add dummy install-dvi target.
libiberty/ChangeLog:
PR other/102663
* Makefile.in: Allow dvi-formatted documentation
to be installed.
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libcpp/Makefile.in b/libcpp/Makefile.in index 6c403a8..34e4206 100644 --- a/libcpp/Makefile.in +++ b/libcpp/Makefile.in @@ -195,6 +195,7 @@ html: info: install-info: install-pdf: +install-dvi: install-man: install-html: @@ -202,7 +203,7 @@ update-po: $(CATALOGS:.gmo=.pox) .PHONY: installdirs install install-strip mostlyclean clean distclean \ maintainer-clean check installcheck dvi pdf html info install-info \ - install-man update-po install-html + install-man update-po install-html install-pdf install-dvi # Dependency rule. COMPILE.base = $(COMPILER) $(DEFS) $(INCLUDES) $(CPPFLAGS) $(COMPILER_FLAGS) -c |