diff options
author | Daniel Schadt <kingdread@gmx.de> | 2021-11-12 12:58:03 +0100 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2021-11-12 12:58:03 +0100 |
commit | 2ee0f5c5df9c9a02dc81f9597c28894ee26dddb0 (patch) | |
tree | 691e515ea7d2b2cb3e12f7ec8ee83194cab3d4b7 /Makefile | |
parent | 9ce37a975ad4889e070ae5705b6750a4b33d2442 (diff) | |
download | modderbaas-2ee0f5c5df9c9a02dc81f9597c28894ee26dddb0.tar.gz modderbaas-2ee0f5c5df9c9a02dc81f9597c28894ee26dddb0.tar.bz2 modderbaas-2ee0f5c5df9c9a02dc81f9597c28894ee26dddb0.zip |
Add a manpage and more to the README
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..65dcd5c --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: target/modderbaas.html target/modderbaas.1 + +target/modderbaas.html: modderbaas.adoc + asciidoctor -o $@ $< + +target/modderbaas.1: modderbaas.adoc + asciidoctor -b manpage -o $@ $< + +.PHONY: all |