aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-05-17 13:48:40 -0400
committerDrew DeVault <sir@cmpwn.com>2019-05-17 13:48:40 -0400
commit387426923b891b81d3ffa210e9eff3622f5e6081 (patch)
tree670b47e0c212d237466b3760ea2b7949da92fe76 /Makefile
parentfc719e47c452564b56d2ed0b7828fc74e72fcef8 (diff)
Add install target to Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 66dc650..15cc129 100644
--- a/Makefile
+++ b/Makefile
@@ -18,8 +18,18 @@ all: aerc $(DOCS)
clean:
rm -f *.1 *.5 aerc
-install:
- # TODO: install binary, man pages, example config, and filters from contrib
+PREFIX?=/usr/local
+_INSTDIR=$(DESTDIR)$(PREFIX)
+BINDIR?=$(_INSTDIR)/bin
+MANDIR?=$(_INSTDIR)/share/man
+
+install: all
+ mkdir -p $(BINDIR) $(MANDIR)/man1 $(MANDIR)/man5 $(PCDIR)
+ install -m755 aerc $(BINDIR)/aerc
+ install -m644 aerc.1 $(MANDIR)/man1/aerc.1
+ install -m644 aerc-config.5 $(MANDIR)/man5/aerc-config.5
+ install -m644 aerc-imap.5 $(MANDIR)/man5/aerc-imap.5
+ install -m644 aerc-smtp.5 $(MANDIR)/man5/aerc-smtp.5
.DEFAULT_GOAL := all