tweaking Makefile...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2019-03-12 19:53:41 +03:00
parent b996a7e772
commit 8592b34e8c

View File

@ -1,5 +1,5 @@
#********************************************************************** #**********************************************************************
# ##
## ImageGrid.Viewer Makefile... ## 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 # XXX might be a good idea to split these to sections and check only what
# is needed... # is needed...
# ...like: base, electron, wix, ... # ...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 lessc electron electron-rebuild asar
# WiX dependencies, windows only... # WiX dependencies, windows only...
#DEPENDENCIES += heat candle light #DEPENDENCIES += heat candle light
@ -267,7 +267,7 @@ DEPENDENCIES = node npm wget sed zip unzip zipnote git \
#********************************************************************** #**********************************************************************
### Generic targets... # help generator...
.PHONY: help .PHONY: help
help: help:
@ -296,6 +296,10 @@ help:
done done
#**********************************************************************
### Generic targets...
.PHONY: all .PHONY: all
all: ## Run the full build chain all: ## Run the full build chain
all: check dev dist deploy all: check dev dist deploy
@ -454,8 +458,8 @@ nw-run: dev
### Dependency checking... ### Dependency checking...
require(%): require(%):
@echo Checking for: $* @echo Checking for: $* \
@which $* > /dev/null `which $* > /dev/null && echo '(OK)' || echo '(FAIL)'`
.PHONY: check .PHONY: check