diff options
author | 2014-04-23 19:21:57 +0200 | |
---|---|---|
committer | 2014-04-23 19:21:57 +0200 | |
commit | 80aff35bf06ff20d6a938c0075b633b03333d8d7 (patch) | |
tree | 8836f2d8edef4c661230e7afe9bbccb9f062383a /Makefile | |
parent | contrib: fix typo (diff) | |
download | password-store-80aff35bf06ff20d6a938c0075b633b03333d8d7.tar.xz password-store-80aff35bf06ff20d6a938c0075b633b03333d8d7.zip |
makefile: add force all flag to enable all features
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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 |