Change to use asciidoctor for man pages
authorRalph Ronnquist <rrq@rrq.au>
Wed, 27 Aug 2025 10:19:23 +0000 (20:19 +1000)
committerRalph Ronnquist <rrq@rrq.au>
Wed, 27 Aug 2025 10:19:23 +0000 (20:19 +1000)
Makefile

index 7e5cefb1e543b5bf411e1c61ca2668275020db43..ae306cf09cc2311d7a882f45758f3a697133e4fd 100644 (file)
--- 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