aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-10-19 11:45:42 -0300
committerEuAndreh <eu@euandre.org>2022-10-19 11:51:00 -0300
commit88c8d0318f3c10c29e84c191d758e732075352bd (patch)
tree2262dc83f0c62bf2c78a33aa39c881246b0f72f8
parentbin/z: Add working utility (diff)
downloaddotfiles-88c8d0318f3c10c29e84c191d758e732075352bd.tar.gz
dotfiles-88c8d0318f3c10c29e84c191d758e732075352bd.tar.xz
Makefile: Add to generate manpages from POD
Diffstat (limited to '')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..2cbee71
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,12 @@
+.POSIX:
+
+
+pod2man = \
+ share/man/man1/z.1 \
+
+
+all: $(pod2man)
+
+
+share/man/man1/z.1: bin/z
+ pod2man bin/z > $@