diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-04 04:16:49 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-04-04 04:16:49 +0300 |
commit | ed73342ba738a2f65bf916a10670bfeec137a562 (patch) | |
tree | cb90c3ba3d74a4cdf7533047fccf504a6b700e82 | |
parent | d2f759a1d4c8a42db73ac62cb8317847a1b40249 (diff) | |
download | sciteco-ed73342ba738a2f65bf916a10670bfeec137a562.tar.gz |
avoid legacy implict rules in doc/Makefile.am: should fix clean builds
For some strange reason, Make wouldn't know how to get tutorial.ms.
Replacing it with an equivalent `%` works flawlessly, though.
-rw-r--r-- | doc/Makefile.am | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 41bb58c..f69d95f 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -89,11 +89,10 @@ endif %.htbl : % htbl.tes $(SCITECO_FULL) -m -- @srcdir@/htbl.tes $< $@ -SUFFIXES += .htbl .html -.htbl.html: +%.html : %.htbl @GROFF@ -wall -Thtml -man $< >$@ -.ms.html: +%.html : %.ms @GROFF@ -wall -Thtml -ms $< >$@ # FIXME: We may want to build the cheat sheet automatically. |