From: Ralph Ronnquist Date: Wed, 27 Aug 2025 10:19:23 +0000 (+1000) Subject: Change to use asciidoctor for man pages X-Git-Url: https://git.rrq.selfhost.au/?a=commitdiff_plain;h=c8755fb702fca1589ee30b01837f7e48503ceddb;p=rrq%2Fpathmap.git Change to use asciidoctor for man pages --- diff --git a/Makefile b/Makefile index 7e5cefb..ae306cf 100644 --- a/Makefile +++ b/Makefile @@ -13,11 +13,11 @@ default: $(GENFILES) # Generic rule to compile a man page from an adoc file %: %.adoc - a2x -d manpage -f manpage $^ + asciidoctor -bmanpage $^ # Generic rule to compile an html file from an adoc file %.html: %.adoc - asciidoc -bhtml $^ + asciidoctor -bhtml $^ # Generic rule for making a dynamic library form a same named .c file %.so: %.c