minor fix...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2018-01-09 02:36:02 +03:00
parent 5ec5075caf
commit b501bb0c7c

View File

@ -29,7 +29,7 @@
#********************************************************************** #**********************************************************************
# variables... # variables...
APP_NAME=ImageGrid.Viewer APP_NAME = ImageGrid.Viewer
# Electron stuff... # Electron stuff...
@ -37,7 +37,7 @@ APP_NAME=ImageGrid.Viewer
# against are missing, this can happen if we try to run electron # against are missing, this can happen if we try to run electron
# on a non-GUI box... # on a non-GUI box...
# ...love the "statically" linked "dynamic" libs... # ...love the "statically" linked "dynamic" libs...
ELECTRON_VERSION = $(strip $(shell electron -v)) ELECTRON_VERSION := $(strip $(shell electron -v))
ELECTRON_VERSION ?= v1.8.1 ELECTRON_VERSION ?= v1.8.1
ELECTRON_DOWNOAD_URL = https://github.com/electron/electron/releases/download ELECTRON_DOWNOAD_URL = https://github.com/electron/electron/releases/download
@ -81,10 +81,10 @@ FEATURES_DIR=features
WORKERS_DIR=workers WORKERS_DIR=workers
IMAGES_DIR=images IMAGES_DIR=images
PROJECT_FILES = package.json
# get all the .less files to process... # get all the .less files to process...
#LESS_FILES := $(shell find . -type f -name '*.less') #LESS_FILES := $(shell find . -type f -name '*.less')
CSS_FILES := $(patsubst %.less,%.css,$(wildcard css/*.less)) CSS_FILES := $(patsubst %.less,%.css,$(wildcard css/*.less))
PROJECT_FILES=package.json
JS_FILES := $(wildcard *.js) JS_FILES := $(wildcard *.js)
HTML_FILES := $(wildcard *.html) HTML_FILES := $(wildcard *.html)