mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 10:58:10 +01:00
13 lines
162 B
Makefile
13 lines
162 B
Makefile
|
NAME = notmuch-mutt
|
||
|
|
||
|
all: $(NAME) $(NAME).1
|
||
|
|
||
|
$(NAME).1: $(NAME)
|
||
|
pod2man $< > $@
|
||
|
|
||
|
README.html: README
|
||
|
markdown $< > $@
|
||
|
|
||
|
clean:
|
||
|
rm -f notmuch-mutt.1 README.html
|