diff options
author | Kevin Decherf <kevin@kdecherf.com> | 2018-10-14 20:07:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-14 20:07:42 +0200 |
commit | 0ebf595c11031474260ba0874c7973c91163e958 (patch) | |
tree | 03f626ce63f0fae32c4a38852ee7936428eb5558 /Makefile | |
parent | ba69c04c2708cd91f58da74e27184479ac0fe616 (diff) | |
parent | 681e04b0605d2e526f6adc2f99c2ff8fc9e842a7 (diff) | |
download | wallabag-0ebf595c11031474260ba0874c7973c91163e958.tar.gz wallabag-0ebf595c11031474260ba0874c7973c91163e958.tar.zst wallabag-0ebf595c11031474260ba0874c7973c91163e958.zip |
Merge pull request #3706 from shtrom/fix/gnu-make-bash
Makefile fixes for non GNU systems
Diffstat (limited to 'Makefile')
-rw-r--r--[-rwxr-xr-x] | Makefile | 54 |
1 files changed, 2 insertions, 52 deletions
@@ -1,52 +1,2 @@ | |||
1 | TMP_FOLDER=/tmp | 1 | .DEFAULT: |
2 | RELEASE_FOLDER=wllbg-release | 2 | gmake $@ |
3 | |||
4 | ENV ?= prod | ||
5 | |||
6 | help: ## Display this help menu | ||
7 | @grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' | ||
8 | |||
9 | clean: ## Clear the application cache | ||
10 | rm -rf var/cache/* | ||
11 | |||
12 | install: ## Install wallabag with the latest version | ||
13 | @sh scripts/install.sh $(ENV) | ||
14 | |||
15 | update: ## Update the wallabag installation to the latest version | ||
16 | @sh scripts/update.sh $(ENV) | ||
17 | |||
18 | dev: ## Install the latest dev version | ||
19 | @sh scripts/dev.sh | ||
20 | |||
21 | run: ## Run the wallabag built-in server | ||
22 | @php bin/console server:run --env=dev | ||
23 | |||
24 | build: ## Run webpack | ||
25 | @npm run build:$(ENV) | ||
26 | |||
27 | prepare: clean ## Prepare database for testsuite | ||
28 | ifdef DB | ||
29 | cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml | ||
30 | endif | ||
31 | -php bin/console doctrine:database:drop --force --env=test | ||
32 | php bin/console doctrine:database:create --env=test | ||
33 | php bin/console doctrine:migrations:migrate --no-interaction --env=test | ||
34 | |||
35 | fixtures: ## Load fixtures into database | ||
36 | php bin/console doctrine:fixtures:load --no-interaction --env=test | ||
37 | |||
38 | test: prepare fixtures ## Launch wallabag testsuite | ||
39 | bin/simple-phpunit -v | ||
40 | |||
41 | release: ## Create a package. Need a VERSION parameter (eg: `make release VERSION=master`). | ||
42 | ifndef VERSION | ||
43 | $(error VERSION is not set) | ||
44 | endif | ||
45 | @sh scripts/release.sh $(VERSION) $(TMP_FOLDER) $(RELEASE_FOLDER) $(ENV) | ||
46 | |||
47 | deploy: ## Deploy wallabag | ||
48 | @bundle exec cap staging deploy | ||
49 | |||
50 | .PHONY: help clean prepare install fixtures update build test release deploy run dev | ||
51 | |||
52 | .DEFAULT_GOAL := install | ||