diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-03 20:07:08 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-03 20:07:08 +0300 |
commit | b391858790d19a5e91efc824a3329350bc3928d9 (patch) | |
tree | c02dddaafb1d14c4e12e9a56b5a38aa5c7417cdf /doc | |
parent | 9f334bb0665200534c672a89eef358a66da092cd (diff) | |
download | sciteco-b391858790d19a5e91efc824a3329350bc3928d9.tar.gz |
the tutorial is now built along with all other HTML documents if --enable-html-docs
* `--enable-html-manual` renamed to `--enable-html-docs`.
* It's also uploaded to the website and linked to in README.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 424d11e..41bb58c 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -78,9 +78,9 @@ man_MANS = grosciteco.tes.1 tedoc.tes.1 sciteco.1 sciteco.7 dist_noinst_SCRIPTS = htbl.tes -if BUILD_HTMLMAN +if BUILD_HTMLDOCS html_DATA = grosciteco.tes.1.html tedoc.tes.1.html \ - sciteco.1.html sciteco.7.html + sciteco.1.html sciteco.7.html tutorial.html CLEANFILES += $(html_DATA) endif @@ -93,6 +93,9 @@ SUFFIXES += .htbl .html .htbl.html: @GROFF@ -wall -Thtml -man $< >$@ +.ms.html: + @GROFF@ -wall -Thtml -ms $< >$@ + # FIXME: We may want to build the cheat sheet automatically. # This would require a full Groff installation, though. EXTRA_DIST += cheat-sheet.mm |