From 371f4f0600835dd9005373a7d174c322fbd63ee3 Mon Sep 17 00:00:00 2001 From: Christophe Fergeau Date: Thu, 6 Sep 2012 22:52:25 +0200 Subject: Use BINDIR, MANDIR and SYSCONFDIR vars in Makefile This commit introduces these variables, and defaults to using the same values as the ones that were used before. The advantage of doing this is to make it easier to use some distro-specific layout. When this is desirable, these variables can be overridden to what is appropriate at package build time. --- Makefile | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4d4bfa0..19a8717 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ PREFIX ?= /usr DESTDIR ?= +BINDIR ?= $(PREFIX)/bin +MANDIR ?= $(PREFIX)/share/man +SYSCONFDIR ?= /etc .PHONY: install @@ -7,10 +10,10 @@ all: @echo "Password store is a shell script, so there is nothing to do. Try \"make install\" instead." install: - @mkdir -p $(DESTDIR)$(PREFIX)/bin $(DESTDIR)$(PREFIX)/share/man/man1 $(DESTDIR)/etc/bash_completion.d - @install -v src/password-store.sh $(DESTDIR)$(PREFIX)/bin/pass - @install -v man/pass.1 $(DESTDIR)$(PREFIX)/share/man/man1/pass.1 - @install -v bash-completion/pass-bash-completion.sh $(DESTDIR)/etc/bash_completion.d/password-store + @mkdir -p $(DESTDIR)$(BINDIR) $(DESTDIR)$(MANDIR)/man1 $(DESTDIR)$(SYSCONFDIR)/bash_completion.d + @install -v src/password-store.sh $(DESTDIR)$(BINDIR)/pass + @install -v man/pass.1 $(DESTDIR)$(MANDIR)/man1/pass.1 + @install -v bash-completion/pass-bash-completion.sh $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/password-store uninstall: - @rm -vf $(DESTDIR)$(PREFIX)/bin/pass $(DESTDIR)$(PREFIX)/share/man/man1/pass.1 $(DESTDIR)/etc/bash_completion.d/password-store + @rm -vf $(DESTDIR)$(BINDIR)/pass $(DESTDIR)$(MANDIR)/man1/pass.1 $(DESTDIR)$(SYSCONFDIR)/bash_completion.d/password-store -- cgit v1.2.3