aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/Makefile.am
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2025-04-04 04:16:49 +0300
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2025-04-04 04:16:49 +0300
commited73342ba738a2f65bf916a10670bfeec137a562 (patch)
treecb90c3ba3d74a4cdf7533047fccf504a6b700e82 /doc/Makefile.am
parentd2f759a1d4c8a42db73ac62cb8317847a1b40249 (diff)
downloadsciteco-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.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r--doc/Makefile.am5
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.