diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-13 17:05:55 +0100 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2013-03-16 18:07:32 +0100 |
commit | 1c4c0acaeb284c5b65c6e117fdf2d2aa3c4dbdcb (patch) | |
tree | 50e62bfae1ad5ef3eba28fdfd79241519865773a /doc/Makefile.am | |
parent | 9e2f53295699aea8f0333ae0acba35d26a3a58c0 (diff) | |
download | sciteco-1c4c0acaeb284c5b65c6e117fdf2d2aa3c4dbdcb.tar.gz |
prevent image generation during HTML production, instead generate HTML tables using htbl.tes preprocessor
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index e5973c2..3740557 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -6,10 +6,10 @@ CLEANFILES = sciteco.1 man_MANS += sciteco.7 EXTRA_DIST += sciteco.7.template -CLEANFILES += sciteco.7 sciteco.7.in +CLEANFILES += sciteco.7 sciteco.7.in sciteco.7.htbl SOURCES = $(wildcard @top_srcdir@/src/*.cpp) -EXTRA_DIST += generate-docs.tes +EXTRA_DIST += generate-docs.tes htbl.tes %.in : %.template generate-docs.tes $(SOURCES) $(BOOTSTRAP_SCITECO) -m @srcdir@/generate-docs.tes \ @@ -20,8 +20,11 @@ html_DATA = sciteco.1.html sciteco.7.html CLEANFILES += $(html_DATA) endif -%.html : % - @GROFF@ -Thtml -P -I$<. -man -t $< >$@ +%.htbl : % htbl.tes + $(BOOTSTRAP_SCITECO) -m @srcdir@/htbl.tes $< $@ + +%.html : %.htbl + @GROFF@ -Thtml -man $< >$@ # # Doxygen processing (do not install or distribute) @@ -34,9 +37,5 @@ endif doxygen/ : Doxyfile @DOXYGEN@ $< -install-data-local: - @INSTALL@ sciteco.*.png $(DESTDIR)$(htmldir) - clean-local: - -rm -f sciteco.*.png -rm -rf doxygen/ |