diff options
author | Jim Wilson <jimw@sifive.com> | 2018-11-19 15:27:05 -0800 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2018-11-20 11:13:34 +0100 |
commit | 7e72be1c390cb771ef54db4df50d4041bdaa1488 (patch) | |
tree | 00aa00184b72418c5337fdd7abf3f42842123dc2 /libgloss/Makefile.in | |
parent | 6dbd190111ce4e871af70e9b13b495b7465185af (diff) | |
download | newlib-7e72be1c390cb771ef54db4df50d4041bdaa1488.zip newlib-7e72be1c390cb771ef54db4df50d4041bdaa1488.tar.gz newlib-7e72be1c390cb771ef54db4df50d4041bdaa1488.tar.bz2 |
Add libgloss install-pdf and install-html targets.
The toplevel makefile used by binutils/gcc/newlib/etc has install-pdf and
install-html targets, but they fail because libgloss doesn't support them.
Tested with an arm-eabi combined tree build and install, and verifying that
the install-pdf and install-html targets now work, and that the pdf and html
doc files are now in the install tree.
libgloss/
* Makefile.in (install-html, install-pdf): New.
* doc/Makefile.in (htmldir, pdfdir): New.
(porting.ps): Delete white space on blank line.
(install-pdf, install-html): New.
Diffstat (limited to 'libgloss/Makefile.in')
-rw-r--r-- | libgloss/Makefile.in | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libgloss/Makefile.in b/libgloss/Makefile.in index 4528d58..2f99640 100644 --- a/libgloss/Makefile.in +++ b/libgloss/Makefile.in @@ -181,6 +181,16 @@ install-info: srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \ $(MAKE) DO=$@ DODIRS=doc $(FLAGS_TO_PASS) subdir_do +install-html: + rootpre=`pwd`/; export rootpre; \ + srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \ + $(MAKE) DO=$@ DODIRS=doc $(FLAGS_TO_PASS) subdir_do + +install-pdf: + rootpre=`pwd`/; export rootpre; \ + srcrootpre=`cd $(srcdir); pwd`/; export srcrootpre; \ + $(MAKE) DO=$@ DODIRS=doc $(FLAGS_TO_PASS) subdir_do + clean-info: force: |