more tweaking...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-03-12 20:23:45 +03:00
parent bed106a484
commit 8022c49f8a

View File

@ -104,10 +104,11 @@
# #
# #
#********************************************************************** #**********************************************************************
.SECONDEXPANSION:
# basic configuration... # basic configuration...
#SHELL := $(shell which bash) .SECONDEXPANSION:
SHELL := $(shell which bash)
@ -270,17 +271,18 @@ DEPENDENCIES = node npm wget sed printf fgrep zip unzip zipnote git \
# help generator... # help generator...
# #
# Help syntax: # Help syntax:
# ## Normal help text... # "## Normal help text..."
# #
# ### Section title... # "### Section title..."
# #
# ##----- Section title --- # "##----- Section title ---"
# #
.PHONY: help .PHONY: help
help: help:
@IFS=$$'\n' ; \ @IFS=$$'\n' ; \
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) \ help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) \
| fgrep -v fgrep \ | fgrep -v fgrep \
| fgrep -v '"##' \
| sed -e 's/\\$$//'`); \ | sed -e 's/\\$$//'`); \
for help_line in $${help_lines[@]}; do \ for help_line in $${help_lines[@]}; do \
IFS=$$'#' ; \ IFS=$$'#' ; \