summaryrefslogtreecommitdiff
path: root/Makefile
blob: 352f6f0e7510406cd8aec3fc41f81e91ddee4a92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
MANPAGES=mdmv.1 mbox2maildir.1 \
	notmuch-slurp-debbug.1 notmuch-extract-patch.1 maildir-import-patch.1 \
	email-extract-openpgp-certs.1 \
	email-print-mime-structure.1 \
	notmuch-import-patch.1

all: $(MANPAGES)

clean:
	rm -f $(MANPAGES)

%.1: %.1.pod
	pod2man --section=1 --date="Debian Project" --center="User Commands" \
		--utf8 \
		--name=$(subst .1,,$@) \
		$^ $@