aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2014-04-23 19:21:57 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2014-04-23 19:21:57 +0200
commit80aff35bf06ff20d6a938c0075b633b03333d8d7 (patch)
tree8836f2d8edef4c661230e7afe9bbccb9f062383a /Makefile
parentcontrib: fix typo (diff)
downloadpassword-store-80aff35bf06ff20d6a938c0075b633b03333d8d7.tar.xz
password-store-80aff35bf06ff20d6a938c0075b633b03333d8d7.zip
makefile: add force all flag to enable all features
Diffstat (limited to '')
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d6eb52f..f9cf1a8 100644
--- 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