branch: elpa/radio
commit 00d20a028ae5f863a8af49a4da9f6d9619e982f0
Author: Roi Martin <jroi.mar...@gmail.com>
Commit: Roi Martin <jroi.mar...@gmail.com>

    doc: split HTML output in multiple pages
---
 .gitignore   |  8 ++++----
 doc/Makefile | 11 +++++++----
 2 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/.gitignore b/.gitignore
index 43bc508980..f997999078 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,14 +2,14 @@
 
 /doc/*.info
 /doc/*.pdf
-/doc/*.html
+/doc/*-html
 
-/doc/*.aux
 /doc/*.log
+/doc/*.aux
 /doc/*.toc
-/doc/*.cp
-/doc/*.cps
 /doc/*.fn
 /doc/*.fns
 /doc/*.vr
 /doc/*.vrs
+/doc/*.cp
+/doc/*.cps
diff --git a/doc/Makefile b/doc/Makefile
index 468da096fb..aebde56461 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -16,7 +16,7 @@
 CSS_REF ?= https://wip.jroi.dev/css/style.css
 
 .PHONY: all
-all: radio.info radio.pdf radio.html
+all: radio.info radio.pdf radio-html
 
 radio.info: radio.texi
        makeinfo --output=radio.info radio.texi
@@ -24,9 +24,12 @@ radio.info: radio.texi
 radio.pdf: radio.texi
        makeinfo --pdf --output=radio.pdf radio.texi
 
-radio.html: radio.texi
-       makeinfo --html --no-split --css-ref=$(CSS_REF) --output=radio.html 
radio.texi
+radio-html: radio.texi
+       makeinfo --html --css-ref=$(CSS_REF) --output=radio-html radio.texi
 
 .PHONY: clean
 clean:
-       rm -f radio.info radio.pdf radio.html
+       rm -f *.info
+       rm -f *.pdf
+       rm -rf *-html
+       rm -f *.log *.aux *.toc *.fn *.fns *.vr *.vrs *.cp *.cps

Reply via email to