mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +01:00
12 lines
162 B
Makefile
12 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
|