diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 12 |
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 > $@ |