From 8592b34e8ca87cb534dadecd99d84b7454f00896 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Tue, 12 Mar 2019 19:53:41 +0300 Subject: [PATCH] tweaking Makefile... Signed-off-by: Alex A. Naanou --- ui (gen4)/Makefile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/ui (gen4)/Makefile b/ui (gen4)/Makefile index 18eda630..9c2b6727 100755 --- a/ui (gen4)/Makefile +++ b/ui (gen4)/Makefile @@ -1,5 +1,5 @@ #********************************************************************** -# +## ## ImageGrid.Viewer Makefile... ## # @@ -259,7 +259,7 @@ INCLUDE_NW_NODE_MODULES = app-module-path # XXX might be a good idea to split these to sections and check only what # is needed... # ...like: base, electron, wix, ... -DEPENDENCIES = node npm wget sed zip unzip zipnote git \ +DEPENDENCIES = node npm wget sed printf fgrep zip unzip zipnote git \ lessc electron electron-rebuild asar # WiX dependencies, windows only... #DEPENDENCIES += heat candle light @@ -267,7 +267,7 @@ DEPENDENCIES = node npm wget sed zip unzip zipnote git \ #********************************************************************** -### Generic targets... +# help generator... .PHONY: help help: @@ -296,6 +296,10 @@ help: done + +#********************************************************************** +### Generic targets... + .PHONY: all all: ## Run the full build chain all: check dev dist deploy @@ -454,8 +458,8 @@ nw-run: dev ### Dependency checking... require(%): - @echo Checking for: $* - @which $* > /dev/null + @echo Checking for: $* \ + `which $* > /dev/null && echo '(OK)' || echo '(FAIL)'` .PHONY: check