diff options
author | Ludovic Courtès | 2008-12-07 21:12:14 +0100 |
---|---|---|
committer | Ludovic Courtès | 2008-12-07 21:19:05 +0100 |
commit | 6c56789db06e659a344fb384711433bb9ad9aaf0 (patch) | |
tree | 2ba5a4bd78a0839489fde59b1e691485a6dbffea /doc/user/Makefile.am | |
parent | 211fac7955fca91cc840a01543758c4e687bc12c (diff) | |
download | skribilo-6c56789db06e659a344fb384711433bb9ad9aaf0.tar.gz skribilo-6c56789db06e659a344fb384711433bb9ad9aaf0.tar.lz skribilo-6c56789db06e659a344fb384711433bb9ad9aaf0.zip |
doc: Produce user manual in Info format.
* doc/user/Makefile.am (skrinfodir, skrinfo_DATA): New.
(skribilo.info): New target.
* doc/user/user.skb: Don't produce a TOC nor an index when using the
Info engine.
Diffstat (limited to 'doc/user/Makefile.am')
-rw-r--r-- | doc/user/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/user/Makefile.am b/doc/user/Makefile.am index cd148f4..1fcd354 100644 --- a/doc/user/Makefile.am +++ b/doc/user/Makefile.am @@ -26,6 +26,9 @@ EXTRA_DIST += src/api1.skb \ src/outline.txt src/scheme.scm +skrinfodir = $(infodir) +skrinfo_DATA = skribilo.info + html_DATA = user.html user.sui dist_html_DATA = skribilo.css BUILT_SOURCES = lout/front-page.lout @@ -50,6 +53,10 @@ endif load_path = $(top_srcdir)/doc/modules +skribilo.info: user.skb + GUILE_LOAD_PATH=$(load_path):$$GUILE_LOAD_PATH \ + $(skribilo) $(skrflags) --target=info -o $@ $< + .skb.html: GUILE_LOAD_PATH=$(load_path):$$GUILE_LOAD_PATH \ $(skribilo) $(skrflags) --target=html -o $@ $< |