tweaking output...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-03-12 20:08:43 +03:00
parent 8592b34e8c
commit bed106a484

View File

@ -268,7 +268,14 @@ DEPENDENCIES = node npm wget sed printf fgrep zip unzip zipnote git \
#********************************************************************** #**********************************************************************
# help generator... # help generator...
#
# Help syntax:
# ## Normal help text...
#
# ### Section title...
#
# ##----- Section title ---
#
.PHONY: help .PHONY: help
help: help:
@IFS=$$'\n' ; \ @IFS=$$'\n' ; \
@ -458,8 +465,9 @@ nw-run: dev
### Dependency checking... ### Dependency checking...
require(%): require(%):
@echo Checking for: $* \ @printf "%-15s %s\n" \
`which $* > /dev/null && echo '(OK)' || echo '(FAIL)'` "$*" \
"`which $* &> /dev/null && echo '- OK' || echo '- FAIL'`"
.PHONY: check .PHONY: check