password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 80aff35bf06ff20d6a938c0075b633b03333d8d7
parent 485d75423bef9b4eb0e3c8742731f13723339ebc
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Wed, 23 Apr 2014 19:21:57 +0200

makefile: add force all flag to enable all features

Diffstat:
MMakefile | 6++++++
1 file changed, 6 insertions(+), 0 deletions(-)

diff --git a/Makefile b/Makefile @@ -6,6 +6,12 @@ MANDIR ?= $(PREFIX)/share/man PLATFORMFILE := src/platform/$(shell uname | cut -d _ -f 1 | tr '[:upper:]' '[:lower:]').sh +ifeq ($(FORCE_ALL),1) +FORCE_BASHCOMP := 1 +FORCE_ZSHCOMP := 1 +FORCE_FISHCOMP := 1 +endif + ifeq ($(FORCE_BASHCOMP),1) BASHCOMP_SWITCH := "-D" else