From ed73342ba738a2f65bf916a10670bfeec137a562 Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Fri, 4 Apr 2025 04:16:49 +0300 Subject: 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. --- doc/Makefile.am | 5 ++--- 1 file 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. -- cgit v1.2.3