projects
/
rrq
/
newlisp-ftw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2c7de3b
)
added Maefile for generating documentation pages
author
Ralph Ronnquist
<ralph.ronnquist@gmail.com>
Sat, 13 Nov 2021 12:02:38 +0000
(23:02 +1100)
committer
Ralph Ronnquist
<ralph.ronnquist@gmail.com>
Sat, 13 Nov 2021 12:02:38 +0000
(23:02 +1100)
Makefile
[new file with mode: 0644]
patch
|
blob
diff --git a/Makefile
b/Makefile
new file mode 100644
(file)
index 0000000..
503f115
--- /dev/null
+++ b/
Makefile
@@ -0,0
+1,11
@@
+MANPAGES = arper.lsp.8
+HTMLPAGES = $(MANPAGES:%.lsp.8=%.html)
+
+default: $(MANPAGES)
+
+$(MANPAGES): %: %.adoc
+ a2x -d manpage -f manpage $^
+
+
+$(HTMLPAGES): %.html: %.adoc
+ asciidoc -bhtml $^