summaryrefslogtreecommitdiff
path: root/doc/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'doc/makefile')
-rw-r--r--doc/makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/doc/makefile b/doc/makefile
index 6f2a779..fd25e55 100644
--- a/doc/makefile
+++ b/doc/makefile
@@ -18,15 +18,14 @@ clean:
web:
rm -f $(output_dir)/*.html
- texi2html --output=$(output_dir) \
- --split=chapter \
- --noheader \
- --nonumber-section \
- --init-file=$(top_srcdir)/doc/site.conf \
- --top-file=index.html \
- $(top_srcdir)/doc/web.texi
- cp $(top_srcdir)/doc/geiser.css ${output_dir}
- cp -r $(top_srcdir)/doc/img ${output_dir}
+ makeinfo --output=$(output_dir) \
+ --html \
+ --css-include=$(CURDIR)/geiser.css \
+ --no-headers \
+ --no-number-sections \
+ --split=chapter \
+ $(CURDIR)/geiser.texi && \
+ cp -r $(CURDIR)/img ${output_dir}
http: web
cd $(output_dir) && python -m http.server $(port)