diff options
author | Drew DeVault <sir@cmpwn.com> | 2019-05-22 11:13:55 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-05-22 11:13:55 -0400 |
commit | 58bc15b4727c034f9ce656f7774d68ec2e7a3f55 (patch) | |
tree | 617bf444d73635bb75848cf4638c2a8ab46c8666 /Makefile | |
parent | 937b33c8505bc5414903bf6361cc15ea85f7f548 (diff) | |
download | aerc-58bc15b4727c034f9ce656f7774d68ec2e7a3f55.tar.gz |
Implement opening tutorial after account wizard
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 6c9963d..03dd7c3 100644 --- a/Makefile +++ b/Makefile @@ -7,11 +7,15 @@ aerc: %.5: doc/%.5.scd scdoc < $< > $@ +%.7: doc/%.7.scd + scdoc < $< > $@ + DOCS := \ aerc.1 \ aerc-config.5 \ aerc-imap.5 \ - aerc-smtp.5 + aerc-smtp.5 \ + aerc-tutorial.7 all: aerc $(DOCS) |