diff options
author | Christophe Lyon <christophe.lyon@linaro.org> | 2024-04-04 21:51:17 +0000 |
---|---|---|
committer | Christophe Lyon <christophe.lyon@linaro.org> | 2024-04-10 13:37:05 +0000 |
commit | 96c1bcb38bcb1fd1e861d1536ab4deecaaf2b7de (patch) | |
tree | 67fd29c70061a0cf38fb8b8ced79577daafacef7 /gdb/Makefile.in | |
parent | ea83005a367456739e04b6434758e56c04e4d775 (diff) | |
download | binutils-96c1bcb38bcb1fd1e861d1536ab4deecaaf2b7de.zip binutils-96c1bcb38bcb1fd1e861d1536ab4deecaaf2b7de.tar.gz binutils-96c1bcb38bcb1fd1e861d1536ab4deecaaf2b7de.tar.bz2 |
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>
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index e9a6247..23894ea 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -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 |