libpairtwo/Makefile

66 lines
1.9 KiB
Makefile
Raw Normal View History

.PHONY: help tests dist
2018-12-24 14:06:13 +01:00
.DEFAULT_GOAL := help
2019-06-20 11:50:42 +02:00
BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
2019-09-28 00:29:12 +02:00
VERSION := $(if $(TAG),$(TAG),dev-$(BRANCH))
2018-12-24 14:06:13 +01:00
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-12s\033[0m %s\n", $$1, $$2}'
install-dev: ## Installs the required common devtools
@echo "Downloading phpdoc"
@wget https://phpdoc.org/phpDocumentor.phar -O bin/phpdoc 2> /dev/null
@echo "Downloading phpcs"
@wget https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar -O bin/phpcs 2> /dev/null
@wget https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar -O bin/phpcbf 2> /dev/null
@echo "Installation of devtools finished"
@echo "Please add $(shell echo $(PWD))/bin to your PATH"
2018-12-24 14:06:13 +01:00
docs: ## Generates api-docs
2019-11-17 01:19:21 +01:00
phpdoc -d ./src -t ./doc/api
2019-06-17 14:58:06 +02:00
dist: ## Generates distribution
cp dist/composer* res/
mv dist/composer-dist.json dist/composer.json
2019-09-28 00:29:12 +02:00
sed -i -e "s%//VERSION//%$(VERSION)%g" dist/composer.json
cd dist && composer install
rm dist/composer.json
rm dist/composer.lock
mv dist/composer-dist-installed.json dist/composer.json
2019-06-20 13:17:12 +02:00
make api
mkdir -p dist/doc
cp -r doc/api dist/doc
cd dist && zip -r ../libpairtwo-$(VERSION)-dist.zip *
2019-09-28 00:26:51 +02:00
git reset --hard HEAD
2019-06-18 15:13:14 +02:00
mv res/composer* dist/
2019-11-15 17:35:08 +01:00
clean: clean-dist clean-dev clean-repo ## Cleans all assets
2019-11-15 17:35:08 +01:00
clean-dev: ## Cleans dev assets
2019-06-18 15:13:14 +02:00
rm -rf doc/api
rm -rf .idea
rm -rf .libpairtwo-distro
rm -rf vendor
rm -rf composer.lock
2019-11-15 17:35:08 +01:00
clean-dist: ## Cleans distribution assets
rm -rf dist/doc
2019-06-18 15:13:14 +02:00
rm -rf dist/vendor
rm -rf dist/composer.json
rm -rf libpairtwo-*-dist.zip
2019-06-17 14:58:06 +02:00
2019-11-15 17:35:08 +01:00
clean-repo: ## Cleans the git repository
git fsck
git prune
git gc
2018-12-24 14:06:13 +01:00
cs: ## Fixes coding standard problems
vendor/bin/php-cs-fixer fix || true
tag: ## Creates a new signed git tag
$(if $(TAG),,$(error TAG is not defined. Pass via "make tag TAG=X.X.X"))
@echo Tagging $(TAG)
git add --all
2019-06-20 13:23:36 +02:00
git commit -m 'RELEASE: $(TAG) Release'
git tag -s $(TAG) -m 'RELEASE: $(TAG) Release'
2019-06-20 13:23:36 +02:00
make dist