aboutsummaryrefslogtreecommitdiffhomepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorOlivier Mehani <shtrom@ssji.net>2018-08-18 15:39:37 +1000
committerOlivier Mehani <shtrom@ssji.net>2018-08-18 18:50:18 +1000
commit681e04b0605d2e526f6adc2f99c2ff8fc9e842a7 (patch)
treefd9d76795da3090b7321820960306da4d733cb0b /GNUmakefile
parent1421236800ce3a930cad8913ad64d38cd37f7884 (diff)
downloadwallabag-681e04b0605d2e526f6adc2f99c2ff8fc9e842a7.tar.gz
wallabag-681e04b0605d2e526f6adc2f99c2ff8fc9e842a7.tar.zst
wallabag-681e04b0605d2e526f6adc2f99c2ff8fc9e842a7.zip
Makefile fixes for non GNU systems
* Move `Makefile` to `GNUmakefile`, which GNU `make` picks first * Add `Makefile` so other `make`s forward to `gmake` * Set the `SHELL` variable and let `make` handle the shell Signed-off-by: Olivier Mehani <shtrom@ssji.net>
Diffstat (limited to 'GNUmakefile')
-rwxr-xr-xGNUmakefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/GNUmakefile b/GNUmakefile
new file mode 100755
index 00000000..a04468cb
--- /dev/null
+++ b/GNUmakefile
@@ -0,0 +1,53 @@
1SHELL=bash
2TMP_FOLDER=/tmp
3RELEASE_FOLDER=wllbg-release
4
5ENV ?= prod
6
7help: ## Display this help menu
8 @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
9
10clean: ## Clear the application cache
11 rm -rf var/cache/*
12
13install: ## Install wallabag with the latest version
14 @./scripts/install.sh $(ENV)
15
16update: ## Update the wallabag installation to the latest version
17 @./scripts/update.sh $(ENV)
18
19dev: ## Install the latest dev version
20 @./scripts/dev.sh
21
22run: ## Run the wallabag built-in server
23 @php bin/console server:run --env=dev
24
25build: ## Run webpack
26 @npm run build:$(ENV)
27
28prepare: clean ## Prepare database for testsuite
29ifdef DB
30 cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml
31endif
32 -php bin/console doctrine:database:drop --force --env=test
33 php bin/console doctrine:database:create --env=test
34 php bin/console doctrine:migrations:migrate --no-interaction --env=test
35
36fixtures: ## Load fixtures into database
37 php bin/console doctrine:fixtures:load --no-interaction --env=test
38
39test: prepare fixtures ## Launch wallabag testsuite
40 bin/simple-phpunit -v
41
42release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`).
43ifndef VERSION
44 $(error VERSION is not set)
45endif
46 @./scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV)
47
48deploy: ## Deploy wallabag
49 @bundle exec cap staging deploy
50
51.PHONY: help clean prepare install fixtures update build test release deploy run dev
52
53.DEFAULT_GOAL := install