Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Wilson <jimw@sifive.com>2018-11-20 02:27:05 +0300
committerCorinna Vinschen <corinna@vinschen.de>2018-11-20 13:13:34 +0300
commit7e72be1c390cb771ef54db4df50d4041bdaa1488 (patch)
tree00aa00184b72418c5337fdd7abf3f42842123dc2 /libgloss/doc
parent6dbd190111ce4e871af70e9b13b495b7465185af (diff)
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/doc')
-rw-r--r--libgloss/doc/Makefile.in21
1 files changed, 20 insertions, 1 deletions
diff --git a/libgloss/doc/Makefile.in b/libgloss/doc/Makefile.in
index 07fb1e135..53d037049 100644
--- a/libgloss/doc/Makefile.in
+++ b/libgloss/doc/Makefile.in
@@ -22,6 +22,8 @@ datarootdir = @datarootdir@
mandir = @mandir@
man1dir = $(mandir)/man1
infodir = @infodir@
+htmldir = @htmldir@
+pdfdir = @pdfdir@
MAKEINFO = makeinfo
TEXI2DVI = TEXINPUTS=$(TEXIDIR):$(srcdir):$$TEXINPUTS texi2dvi
@@ -69,7 +71,7 @@ porting.html: $(srcdir)/porting.texi $(srcdir)/porting.texi
porting.ps: porting.dvi
dvips -f porting.dvi > porting.ps
-
+
# different targets for -ms, -mm, -me
# Try to use a recent texi2roff. v2 was put on prep in jan91.
# If you want an index, see texi2roff doc for postprocessing
@@ -146,6 +148,23 @@ install-info: info
$(INSTALL_DATA) $$i $(DESTDIR)$(infodir)/$$i ; \
done
+install-pdf: pdf
+ for i in *.pdf ; do \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(pdfdir)/$$i ; \
+ done
+
+install-html: html
+ for i in *.html ; do \
+ if [ -d $$i ]; then \
+ mkdir -p $(DESTDIR)$(htmldir)/$$i ; \
+ for j in $$i/*.html ; do \
+ $(INSTALL_DATA) $$j $(DESTDIR)$(htmldir)/$$j ; \
+ done \
+ else \
+ $(INSTALL_DATA) $$i $(DESTDIR)$(htmldir)/$$i ; \
+ fi ; \
+ done
+
clean-info:
-rm -rf *.info*