From c8755fb702fca1589ee30b01837f7e48503ceddb Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Wed, 27 Aug 2025 20:19:23 +1000 Subject: [PATCH] Change to use asciidoctor for man pages --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.47.2