From 80aff35bf06ff20d6a938c0075b633b03333d8d7 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Wed, 23 Apr 2014 19:21:57 +0200 Subject: makefile: add force all flag to enable all features --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) 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 -- cgit v1.2.3-59-g8ed1b