|
@@ -8,6 +8,7 @@ CHROMIUM ?= ./node_modules/.bin/run-headless-chromium
|
|
CLEANCSS ?= ./node_modules/clean-css-cli/bin/cleancss --skip-rebase
|
|
CLEANCSS ?= ./node_modules/clean-css-cli/bin/cleancss --skip-rebase
|
|
ESLINT ?= ./node_modules/.bin/eslint
|
|
ESLINT ?= ./node_modules/.bin/eslint
|
|
HTTPSERVE ?= ./node_modules/.bin/http-server
|
|
HTTPSERVE ?= ./node_modules/.bin/http-server
|
|
|
|
+HTTPSERVE_PORT ?= 8000
|
|
PAPER =
|
|
PAPER =
|
|
PO2JSON ?= ./node_modules/.bin/po2json
|
|
PO2JSON ?= ./node_modules/.bin/po2json
|
|
RJS ?= ./node_modules/.bin/r.js
|
|
RJS ?= ./node_modules/.bin/r.js
|
|
@@ -51,11 +52,11 @@ help:
|
|
|
|
|
|
.PHONY: serve
|
|
.PHONY: serve
|
|
serve: dev
|
|
serve: dev
|
|
- $(HTTPSERVE) -p 8000 -c-1
|
|
|
|
|
|
+ $(HTTPSERVE) -p $(HTTPSERVE_PORT) -c-1
|
|
|
|
|
|
.PHONY: serve_bg
|
|
.PHONY: serve_bg
|
|
serve_bg: dev
|
|
serve_bg: dev
|
|
- $(HTTPSERVE) -p 8000 -c-1 -s &
|
|
|
|
|
|
+ $(HTTPSERVE) -p $(HTTPSERVE_PORT) -c-1 -s &
|
|
|
|
|
|
########################################################################
|
|
########################################################################
|
|
## Translation machinery
|
|
## Translation machinery
|
|
@@ -206,7 +207,7 @@ eslint: stamp-npm
|
|
|
|
|
|
.PHONY: check
|
|
.PHONY: check
|
|
check: eslint
|
|
check: eslint
|
|
- LOG_CR_VERBOSITY=INFO $(CHROMIUM) http://localhost:8000/tests.html
|
|
|
|
|
|
+ LOG_CR_VERBOSITY=INFO $(CHROMIUM) http://localhost:$(HTTPSERVE_PORT)/tests.html
|
|
|
|
|
|
|
|
|
|
########################################################################
|
|
########################################################################
|