INSTALL_EXE := $(INSTALL) -m 555
STOW := @stow@
+#-------------------------------------------------------------------------
+# Range helper function. $(call range,3,6) generates the string 3 4 5
+#-------------------------------------------------------------------------
+
+range = $(shell _i=$(1); \
+ while [[ $$_i -lt $(2) ]]; do \
+ echo -n "$$_i "; \
+ ((_i = _i + 1)); \
+ done)
+
#-------------------------------------------------------------------------
# Include subproject makefile fragments
#-------------------------------------------------------------------------