Skip to content

Commit 0d5a5b1

Browse files
Add man generator Makefile
1 parent e27d132 commit 0d5a5b1

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
MAKEFLAGS += --warn-undefined-variables
2+
SHELL := /bin/sh
3+
4+
.PHONY: all
5+
all: man
6+
7+
mgitstatus.1: mgitstatus.1.md
8+
pandoc ./$< -s -t man > $@
9+
10+
.PHONY: man
11+
man: mgitstatus.1

0 commit comments

Comments
 (0)