about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c2e6d1b..0592c56 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,8 @@ DOCS := \
 	aerc-sendmail.5 \
 	aerc-notmuch.5 \
 	aerc-smtp.5 \
-	aerc-tutorial.7
+	aerc-tutorial.7 \
+	aerc-templates.7
 
 .1.scd.1:
 	scdoc < $< > $@
@@ -58,7 +59,7 @@ clean:
 
 install: all
 	mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(MANDIR)/man7 \
-		$(SHAREDIR) $(SHAREDIR)/filters
+		$(SHAREDIR) $(SHAREDIR)/filters $(SHAREDIR)/templates
 	install -m755 aerc $(BINDIR)/aerc
 	install -m644 aerc.1 $(MANDIR)/man1/aerc.1
 	install -m644 aerc-search.1 $(MANDIR)/man1/aerc-search.1
@@ -75,6 +76,8 @@ install: all
 	install -m755 filters/hldiff $(SHAREDIR)/filters/hldiff
 	install -m755 filters/html $(SHAREDIR)/filters/html
 	install -m755 filters/plaintext $(SHAREDIR)/filters/plaintext
+	install -m644 templates/quoted_reply $(SHAREDIR)/templates/quoted_reply
+	install -m644 templates/forward_as_body $(SHAREDIR)/templates/forward_as_body
 
 RMDIR_IF_EMPTY:=sh -c '\
 if test -d $$0 && ! ls -1qA $$0 | grep -q . ; then \