X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=GNUmakefile;h=d0894dbbf85c9637120e47e0a4d22ae3f1db0f9a;hb=d647e5059781f2ec216249c3cf289f72c50c5231;hp=a04468cb1a6a9704440aadb7eb27fdaef0f22fee;hpb=fbdc665487bc5ea9fd46502be06a13ebc3e2fb4f;p=github%2Fwallabag%2Fwallabag.git diff --git a/GNUmakefile b/GNUmakefile index a04468cb..d0894dbb 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -2,7 +2,14 @@ SHELL=bash TMP_FOLDER=/tmp RELEASE_FOLDER=wllbg-release -ENV ?= prod +# ensure the ENV variable is well defined +AVAILABLE_ENV := prod dev test +ifneq ($(filter $(ENV),$(AVAILABLE_ENV)),) + # all good +else + # not good, force it to "prod" + override ENV = prod +endif help: ## Display this help menu @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' @@ -16,13 +23,15 @@ install: ## Install wallabag with the latest version update: ## Update the wallabag installation to the latest version @./scripts/update.sh $(ENV) -dev: ## Install the latest dev version +dev: ENV=dev +dev: build ## Install the latest dev version @./scripts/dev.sh run: ## Run the wallabag built-in server @php bin/console server:run --env=dev build: ## Run webpack + @npm install @npm run build:$(ENV) prepare: clean ## Prepare database for testsuite