]> gitweb.michael.orlitzky.com - amavis-logwatch.git/commitdiff
Makefile: fix the HTML documentation rule.
authorMichael Orlitzky <michael@orlitzky.com>
Thu, 5 Aug 2021 22:16:30 +0000 (18:16 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Thu, 5 Aug 2021 22:18:52 +0000 (18:18 -0400)
It looks like man2html on Linux does not (or does not any longer)
support the "-t" flag. Moreover, man2html seems happy to read the man
page directly. In this commit we simplify the html documentation rule
to simply call man2html on the man page itself, with no flags.

Makefile

index 8f12319af8feb9d70e4b1f0f9015ebca0999826a..2e09bf6f962d77459bb4a412dbc10298f06aeed1 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -54,5 +54,5 @@ release:
        rel=$(program)-$$vers ; \
        tar -cJf $${rel}.tar.xz --transform=s",^,$${rel}/," $(src) ;
 
-htmlpage:
-       groff -m mandoc -T ascii $(program).1 | man2html -t 'Man page: $(program)(1)' >| $(program).1.html;
+$(program).1.html: $(program).1
+       man2html $< > $@