Avoid gmake-specific pattern substitution in Makefile.am.

Resolves #2226
This commit is contained in:
Raphael Graf 2019-02-08 19:16:56 +01:00
parent ec8f02c0de
commit 86b14c32a9

View File

@ -32,13 +32,15 @@ EXTRA_DIST = $(man_MANS) Doxyfile
.PHONY: html
html: $(patsubst %,%.html,$(man_MANS))
html: ${man_MANS:%=%.html}
%: %.asc
SUFFIXES = .asc .html
.asc:
asciidoc -b docbook -d manpage -o - $< | \
xsltproc --nonet $(man_xslt) -
%.html: %.asc
.asc.html:
asciidoc -b html5 -o $@ $<
MAINTAINERCLEANFILES = $(man_MANS) Doxyfile